mirror of
https://github.com/Radiquum/AniX.git
synced 2025-04-06 00:04:39 +00:00
fix(frontend/color-picker): fix dynamic theme depending on user avatar
This commit is contained in:
parent
25e8015735
commit
8897aca6c9
2 changed files with 3 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
|||
let API_URL = "/api/v1";
|
||||
export let API_URL = "/api/v1";
|
||||
|
||||
if (process.env.API_URL) {
|
||||
API_URL = process.env.API_URL;
|
||||
|
|
|
@ -3,6 +3,7 @@
|
|||
import { useState } from "react";
|
||||
import Styles from "./ColorPicker.module.css";
|
||||
import { useUserStore } from "@/app/store/user-store";
|
||||
import { API_URL } from "@/app/api/config";
|
||||
|
||||
export const ColorPicker = (props) => {
|
||||
const userStore = useUserStore();
|
||||
|
@ -42,7 +43,7 @@ export const ColorPicker = (props) => {
|
|||
className={`circle border small s2`}
|
||||
onClick={() => {
|
||||
props.theme(
|
||||
`/api/proxy/image?url=${userStore.user.profile.avatar}`,
|
||||
`${API_URL}/proxy/image?url=${userStore.user.profile.avatar}`,
|
||||
);
|
||||
}}
|
||||
>
|
||||
|
|
Loading…
Add table
Reference in a new issue