Spaces:
Runtime error
Runtime error
chore: change height, removed unused code
Browse files
src/components/GameCreator.tsx
CHANGED
@@ -80,7 +80,6 @@ export default function GameCreator() {
|
|
80 |
const [template, setTemplate] = useState(prettify(baseGame.default));
|
81 |
const [runningId, setRunningId] = useState("1");
|
82 |
const [activeId, setActiveId] = useState("1");
|
83 |
-
const [editingId, setEditingId] = useState<string | null>(null);
|
84 |
const [answers, setAnswers] = useAtom(answersAtom);
|
85 |
const [showCode, setShowCode] = useAtom(showCodeAtom);
|
86 |
const [loading, setLoading] = useState(false);
|
@@ -174,7 +173,7 @@ export default function GameCreator() {
|
|
174 |
inset: 0,
|
175 |
overflow: "hidden",
|
176 |
flexDirection: { md: "row" },
|
177 |
-
height: "
|
178 |
}}
|
179 |
>
|
180 |
<Stack
|
|
|
80 |
const [template, setTemplate] = useState(prettify(baseGame.default));
|
81 |
const [runningId, setRunningId] = useState("1");
|
82 |
const [activeId, setActiveId] = useState("1");
|
|
|
83 |
const [answers, setAnswers] = useAtom(answersAtom);
|
84 |
const [showCode, setShowCode] = useAtom(showCodeAtom);
|
85 |
const [loading, setLoading] = useState(false);
|
|
|
173 |
inset: 0,
|
174 |
overflow: "hidden",
|
175 |
flexDirection: { md: "row" },
|
176 |
+
height: "95vh",
|
177 |
}}
|
178 |
>
|
179 |
<Stack
|