Skip to content

Commit

Permalink
refactor: fix type references
Browse files Browse the repository at this point in the history
  • Loading branch information
EdieLemoine committed Dec 19, 2023
1 parent 06fb094 commit 50f4d80
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion apps/admin/src/services/addErrorToNotifications.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import {Variant} from '@myparcel-pdk/common';
import {isOfType} from '@myparcel/ts-utils';
import {type ApiException} from '@myparcel/sdk';
import {type PdkNotification, type NotificationCategory} from '../types';
import {type PdkNotification} from '../types';
import {useNotificationStore} from '../stores';
import {type NotificationCategory} from '../data';
import {createNotification} from './createNotification';
Expand Down
3 changes: 2 additions & 1 deletion apps/admin/src/services/createNotification.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import {type Variant} from '@myparcel-pdk/common';
import {type PdkNotification, NotificationCategory} from '../types';
import {type PdkNotification} from '../types';
import {NotificationCategory} from '../data';
import {useLanguage} from '../composables';

const PREFIX = 'notification_';
Expand Down

0 comments on commit 50f4d80

Please sign in to comment.