Skip to content

Commit 23be830

Browse files
committed
Remove unused var
1 parent eb6af23 commit 23be830

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/pages/DebuggerContent.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,8 +74,7 @@ const DebuggerContent = () => {
7474
} = useAppSelector((state) => state.debugger);
7575
const workers = useAppSelector((state) => state.workers);
7676
const [activeTab, setActiveTab] = useState("program");
77-
// eslint-disable-next-line @typescript-eslint/no-unused-vars
78-
const { currentInstruction, currentState, previousState } = workers[0] || {
77+
const { currentState, previousState } = workers[0] || {
7978
currentInstruction: null,
8079
currentState: initialState,
8180
previousState: initialState,

0 commit comments

Comments
 (0)