Skip to content

Commit c879d2b

Browse files
style: remove unused // @ts-expect-error
1 parent 86748a6 commit c879d2b

1 file changed

Lines changed: 0 additions & 2 deletions

File tree

src/lib/sell/index.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -285,13 +285,11 @@ function SellOrderPreview(props: {
285285
const startDate = props.startAt === "NOW" ? dayjs() : dayjs(props.startAt);
286286
const start = startDate.format("MMM D h:mm a").toLowerCase();
287287

288-
// @ts-expect-error fromNow not typed
289288
const startFromNow = startDate.fromNow();
290289

291290
const endDate = roundEndDate(props.endsAt);
292291
const end = endDate.format("MMM D h:mm a").toLowerCase();
293292

294-
// @ts-expect-error fromNow not typed
295293
const endFromNow = endDate.fromNow();
296294

297295
const realDuration = endDate.diff(startDate);

0 commit comments

Comments
 (0)