Skip to content

Commit

Permalink
fix type error
Browse files Browse the repository at this point in the history
  • Loading branch information
mimarz committed Jun 20, 2024
1 parent 8abe3df commit 4d02998
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/cli/src/tokens/actions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export const makeEntryFile: Action = {

const generateImportUrls = R.pipe(
sortLightmodeFirst,
R.map((file) => `@import url('./${theme}/${file}');`),
R.map((file): string => `@import url('./${theme}/${file.toString()}');`),
R.join('\n'),
);

Expand Down

0 comments on commit 4d02998

Please sign in to comment.