From 8a212db69b8d6b5f997002e577e22e7bd1694cf4 Mon Sep 17 00:00:00 2001 From: Wojciech Kwiatek Date: Thu, 22 Aug 2024 17:51:27 +0200 Subject: [PATCH] Fix prettier issue --- src/components/Instructions/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Instructions/index.tsx b/src/components/Instructions/index.tsx index 8a195a6..5a3afd6 100644 --- a/src/components/Instructions/index.tsx +++ b/src/components/Instructions/index.tsx @@ -7,7 +7,7 @@ import { ReactNode, useContext, useMemo } from "react"; import { CurrentInstruction, ExpectedState, Status } from "@/types/pvm"; import { InstructionItem } from "./InstructionItem"; -export type ProgramRow = CurrentInstruction & { addressEl: ReactNode, counter: number }; +export type ProgramRow = CurrentInstruction & { addressEl: ReactNode; counter: number }; export const Instructions = ({ status,