Fix zustand imports

This commit is contained in:
Lee 2023-01-13 17:31:56 +00:00
parent 862a76a8f2
commit 0a135b9e73
No known key found for this signature in database
GPG Key ID: BAF8F4DB8E7F38EF
5 changed files with 4 additions and 16 deletions

@ -1,12 +0,0 @@
REACT_APP_HTTP_PROXY=https://proxy.fascinated.cc
REACT_APP_SITE_NAME=BeatSaber Overlay
REACT_APP_SITE_TITLE=BeatSaber Overlay - Simple and easy to use BeatSaber overlay
REACT_APP_SITE_DESCRIPTION=Free, simple, and easy to use beat saber overlay for OBS
REACT_APP_SITE_COLOR=0EBFE9
REACT_APP_SITE_URL=https://bs-overlay.fascinated.cc
REDIS_PORT=6379
REDIS_HOST=127.0.0.1
REDIS_PASSWORD=set me
REDIS_DATABASE=0

@ -1,4 +1,4 @@
import create from "zustand";
import { create } from "zustand";
interface DataState {
mounted: boolean;

@ -1,4 +1,4 @@
import create from "zustand";
import { create } from "zustand";
import Utils from "../utils/utils";
interface SettingsState {

@ -1,5 +1,5 @@
import axios from "axios";
import create from "zustand";
import { create } from "zustand";
import Utils from "../utils/utils";
import { useSettingsStore } from "./overlaySettingsStore";

@ -1,6 +1,6 @@
import env from "@beam-australia/react-env";
import axios from "axios";
import create from "zustand";
import { create } from "zustand";
import Utils from "../utils/utils";
import { useSettingsStore } from "./overlaySettingsStore";