This commit is contained in:
Bill 2021-09-29 22:32:52 -04:00
parent 4b31308e75
commit 44421f7267
2 changed files with 6 additions and 6 deletions

View File

@ -17,13 +17,13 @@ $grid-active-border-color: $white;
$toolbar-height: 55px;
$achievement-width: 650px;
$achievement-height: 400px;
$achievement-width: 350px;
$achievement-height: 370px;
$avatar-editor-width: 620px;
$avatar-editor-height: 374px;
$catalog-width: 620px;
$catalog-width: 630px;
$catalog-height: 400px;
$inventory-width: 528px;

View File

@ -11,9 +11,9 @@ import { MainView } from './views/main/MainView';
export const App: FC<{}> = props =>
{
const [ isReady, setIsReady ] = useState(false);
const [ isError, setIsError ] = useState(false);
const [ message, setMessage ] = useState('Getting Ready');
const [ isReady, setIsReady ] = useState(false);
const [ isError, setIsError ] = useState(false);
const [ message, setMessage ] = useState('Getting Ready');
//@ts-ignore
if(!NitroConfig) throw new Error('NitroConfig is not defined!');