Skip to content

Commit

Permalink
[@mantine/dates] Fix broken esm imports of dayjs plugins (#4875)
Browse files Browse the repository at this point in the history
  • Loading branch information
BengtHagemeister authored Sep 26, 2023
1 parent d0a8feb commit 5414f95
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/mantine-dates/src/utils/get-timezone-offset.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import dayjs from 'dayjs';
import utcPlugin from 'dayjs/plugin/utc';
import timezonePlugin from 'dayjs/plugin/timezone';
import utcPlugin from 'dayjs/plugin/utc.js';
import timezonePlugin from 'dayjs/plugin/timezone.js';

dayjs.extend(utcPlugin);
dayjs.extend(timezonePlugin);
Expand Down

0 comments on commit 5414f95

Please sign in to comment.