File tree Expand file tree Collapse file tree 1 file changed +23
-23
lines changed
Expand file tree Collapse file tree 1 file changed +23
-23
lines changed Original file line number Diff line number Diff line change @@ -249,30 +249,30 @@ const TheVaguePage = () => {
249249 </ main >
250250 </ div >
251251
252- { /* TERMINAL OVERLAY */ }
253- < AnimatePresence >
254- { showTerminal && (
255- < motion . div
256- initial = { { opacity : 0 } }
257- animate = { { opacity : 1 } }
258- exit = { { opacity : 0 } }
259- className = "fixed inset-0 z-[2000]"
260- >
261- < TheVagueTerminal
262- issues = { sortedIssues }
263- onExit = { ( ) => setShowTerminal ( false ) }
264- onOpenIssue = { handleIssueClick }
265- />
266- </ motion . div >
267- ) }
268- </ AnimatePresence >
252+ { /* TERMINAL OVERLAY */ }
253+ < AnimatePresence >
254+ { showTerminal && (
255+ < motion . div
256+ initial = { { opacity : 0 } }
257+ animate = { { opacity : 1 } }
258+ exit = { { opacity : 0 } }
259+ className = "fixed inset-0 z-[2000]"
260+ >
261+ < TheVagueTerminal
262+ issues = { sortedIssues }
263+ onExit = { ( ) => setShowTerminal ( false ) }
264+ onOpenIssue = { handleIssueClick }
265+ />
266+ </ motion . div >
267+ ) }
268+ </ AnimatePresence >
269269
270- < VagueEditorialModal
271- isOpen = { ! ! selectedIssue }
272- onClose = { ( ) => setSelectedIssue ( null ) }
273- item = { selectedIssue }
274- isInvert = { isInvert }
275- />
270+ < VagueEditorialModal
271+ isOpen = { ! ! selectedIssue }
272+ onClose = { ( ) => setSelectedIssue ( null ) }
273+ item = { selectedIssue }
274+ isInvert = { isInvert }
275+ />
276276 </ div >
277277 ) ;
278278} ;
You can’t perform that action at this time.
0 commit comments