From 3183ed432bdfdeb7c400af7e3d698b7dd8f27252 Mon Sep 17 00:00:00 2001 From: LeeSeungmin Date: Tue, 12 Mar 2024 13:39:57 +0900 Subject: [PATCH] =?UTF-8?q?[#69]Feat:=20=ED=83=80=EC=9D=B4=EB=A8=B8?= =?UTF-8?q?=EC=9D=98=20=EC=8B=9C=EA=B0=84=EC=9D=84=20=EB=8D=94=20=EB=94=94?= =?UTF-8?q?=ED=85=8C=EC=9D=BC=ED=95=98=EA=B2=8C=20=ED=91=9C=EC=8B=9C?= =?UTF-8?q?=ED=95=98=EA=B8=B0=20=EC=9C=84=ED=95=B4=EC=84=9C=20=EC=85=8B?= =?UTF-8?q?=EC=A7=B8=20=EC=9E=90=EB=A6=AC=EA=B9=8C=EC=A7=80=20=ED=91=9C?= =?UTF-8?q?=EC=8B=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Src/Subviews/Cell/FallinguserCollectionViewCellModel.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Projects/Features/Falling/Src/Subviews/Cell/FallinguserCollectionViewCellModel.swift b/Projects/Features/Falling/Src/Subviews/Cell/FallinguserCollectionViewCellModel.swift index f6ab595c..0db5ab21 100644 --- a/Projects/Features/Falling/Src/Subviews/Cell/FallinguserCollectionViewCellModel.swift +++ b/Projects/Features/Falling/Src/Subviews/Cell/FallinguserCollectionViewCellModel.swift @@ -86,7 +86,7 @@ enum TimeState { switch self { case .initial: return 1 case .five(let value), .four(let value), .three(let value), .two(let value), .one(let value), .zero(let value), .over(let value): - return (value / 2 - 1) / 5 + return round((value / 2 - 1) / 5 * 1000) / 1000 } }