Skip to content

Commit

Permalink
fix yarn lint
Browse files Browse the repository at this point in the history
  • Loading branch information
SupernaviX committed Nov 25, 2024
1 parent d1bc246 commit 33b3f3e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src-ui/components/Debugger/Debugger.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ const Debugger: FC<IDebuggerProps> = ({
}, []);

useEffect(() => {
identifier && fetchFrames(identifier);
if (identifier) fetchFrames(identifier);
}, [identifier, fetchFrames]);

useEffect(() => {
Expand Down

0 comments on commit 33b3f3e

Please sign in to comment.