From de1783e34cd61bac20eb0f08a6c66b3d29aec870 Mon Sep 17 00:00:00 2001 From: Kirill Lakhov Date: Mon, 11 Mar 2024 10:29:21 +0300 Subject: [PATCH] fixed semicolon --- cvat-ui/plugins/sam/src/ts/index.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cvat-ui/plugins/sam/src/ts/index.tsx b/cvat-ui/plugins/sam/src/ts/index.tsx index 91b6ba9a995c..0473ee35dbec 100644 --- a/cvat-ui/plugins/sam/src/ts/index.tsx +++ b/cvat-ui/plugins/sam/src/ts/index.tsx @@ -56,9 +56,9 @@ interface SAMPlugin { } interface ClickType { - clickType: 0 | 1, - x: number, - y: number, + clickType: 0 | 1; + x: number; + y: number; } function getModelScale(w: number, h: number): number {