Fix zustand imports
This commit is contained in:
parent
862a76a8f2
commit
0a135b9e73
12
.env.example
12
.env.example
@ -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";
|
||||
|
||||
|
Reference in New Issue
Block a user