Skip to content

Commit

Permalink
Merge pull request #164 from codex-team/feat/domain-error-handler
Browse files Browse the repository at this point in the history
Fix file DomainError import
  • Loading branch information
elizachi authored Jan 22, 2024
2 parents 727b50f + 5514ec8 commit 6bc5248
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/domain/service/note.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import type { Note, NoteInternalId, NotePublicId } from '@domain/entities/note.js';
import type NoteRepository from '@repository/note.repository.js';
import { createPublicId } from '@infrastructure/utils/id.js';
import { DomainError } from '@domain/entities/DomainError';
import { DomainError } from '@domain/entities/DomainError.js';

/**
* Note service
Expand Down
2 changes: 1 addition & 1 deletion src/domain/service/noteSettings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import type { Team, TeamMember, TeamMemberCreationAttributes } from '@domain/ent
import { MemberRole } from '@domain/entities/team.js';
import type User from '@domain/entities/user.js';
import { createInvitationHash } from '@infrastructure/utils/invitationHash.js';
import { DomainError } from '@domain/entities/DomainError';
import { DomainError } from '@domain/entities/DomainError.js';

/**
* Service responsible for Note Settings
Expand Down

0 comments on commit 6bc5248

Please sign in to comment.