Skip to content

Commit

Permalink
Use named imports, since some of the node tests don't like not having…
Browse files Browse the repository at this point in the history
… it.

Part of #674.
  • Loading branch information
jkomoros committed Nov 13, 2023
1 parent 749eee4 commit 7c090f4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/actions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import {
FIND_CARD_TO_LINK as LINK,
FIND_CARD_TO_PERMISSION as PERMISSION,
FIND_CARD_TO_REFERENCE as REFRENCE
} from './type_constants';
} from './type_constants.js';

import {
AIDialogType,
Expand Down Expand Up @@ -45,7 +45,7 @@ import {
UserPermissions,
UserPermissionsMap,
ViewMode
} from './types';
} from './types.js';

//AI
export const AI_REQUEST_STARTED = 'AI_REQUEST_STARTED';
Expand Down

0 comments on commit 7c090f4

Please sign in to comment.