From e183e5fab4d1f4edf3f7a1a31d9645e050c96b0d Mon Sep 17 00:00:00 2001 From: ma9pie Date: Thu, 7 Mar 2024 16:14:48 +0900 Subject: [PATCH] fix : compile error --- src/utils/math.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/math.ts b/src/utils/math.ts index cfc6524..f74d395 100644 --- a/src/utils/math.ts +++ b/src/utils/math.ts @@ -1,6 +1,6 @@ import Big from 'big.js'; -import { floor } from '@/utils'; +import { floor } from './format'; type Argument = number | string | BigInt | undefined;