diff --git a/src/app/App.tsx b/src/app/App.tsx index c79a30c9..10fd770d 100644 --- a/src/app/App.tsx +++ b/src/app/App.tsx @@ -1232,10 +1232,8 @@ export function App({ store, initialStatusMessage }: AppProps) { const [sceneLoadingHeadlineDraft, setSceneLoadingHeadlineDraft] = useState( activeProjectScene.loadingScreen.headline ?? "" ); - const [ - sceneLoadingDescriptionDraft, - setSceneLoadingDescriptionDraft - ] = useState(activeProjectScene.loadingScreen.description ?? ""); + const [sceneLoadingDescriptionDraft, setSceneLoadingDescriptionDraft] = + useState(activeProjectScene.loadingScreen.description ?? ""); const [brushNameDraft, setBrushNameDraft] = useState(""); const [entityNameDraft, setEntityNameDraft] = useState(""); const [modelInstanceNameDraft, setModelInstanceNameDraft] = useState(""); @@ -2487,9 +2485,7 @@ export function App({ store, initialStatusMessage }: AppProps) { setStatusMessage("Created a new scene."); }; - const handleActiveSceneChange = ( - event: ChangeEvent - ) => { + const handleActiveSceneChange = (event: ChangeEvent) => { const nextSceneId = event.currentTarget.value; if (nextSceneId === editorState.activeSceneId) { @@ -6610,7 +6606,10 @@ export function App({ store, initialStatusMessage }: AppProps) {