fix(frontend/color-picker): fix dynamic theme depending on user avatar

This commit is contained in:
Kentai Radiquum 2024-05-15 22:06:32 +05:00
parent 25e8015735
commit 8897aca6c9
Signed by: Radiquum
GPG key ID: 858E8EE696525EED
2 changed files with 3 additions and 2 deletions

View file

@ -1,4 +1,4 @@
let API_URL = "/api/v1"; export let API_URL = "/api/v1";
if (process.env.API_URL) { if (process.env.API_URL) {
API_URL = process.env.API_URL; API_URL = process.env.API_URL;

View file

@ -3,6 +3,7 @@
import { useState } from "react"; import { useState } from "react";
import Styles from "./ColorPicker.module.css"; import Styles from "./ColorPicker.module.css";
import { useUserStore } from "@/app/store/user-store"; import { useUserStore } from "@/app/store/user-store";
import { API_URL } from "@/app/api/config";
export const ColorPicker = (props) => { export const ColorPicker = (props) => {
const userStore = useUserStore(); const userStore = useUserStore();
@ -42,7 +43,7 @@ export const ColorPicker = (props) => {
className={`circle border small s2`} className={`circle border small s2`}
onClick={() => { onClick={() => {
props.theme( props.theme(
`/api/proxy/image?url=${userStore.user.profile.avatar}`, `${API_URL}/proxy/image?url=${userStore.user.profile.avatar}`,
); );
}} }}
> >