Skip to content

Commit

Permalink
fix it later...
Browse files Browse the repository at this point in the history
  • Loading branch information
benhalverson committed Oct 2, 2024
1 parent c08d886 commit c6c25ec
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/colorPicker.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ import { useState, useEffect } from "react";
import { useQuery } from "@tanstack/react-query";
import { Radio, RadioGroup } from "@headlessui/react";
import { ColorsResponse } from "../interfaces";
const BASE_URL = import.meta.env.VITE_BASE_URL;
// const BASE_URL = import.meta.env.VITE_BASE_URL;
const BASE_URL = "https://rc-store.benhalverson.dev";

const ColorPicker: React.FC<Props> = ({filamentType}) => {
console.log('env: ', import.meta.env);
const url = new URL(`${BASE_URL}/colors`);

const fetchColors = async (filamentType: string) => {
Expand Down

0 comments on commit c6c25ec

Please sign in to comment.