Skip to content

Commit

Permalink
chore: Fixes after rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
DafyddLlyr committed Jul 25, 2024
1 parent 2300112 commit 20e5e4e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Application } from "../../../../types/schemas/application";
import {Application} from '../../../../types/schemas/application';

const version = process.env['VERSION'] || '@next';

Expand Down
2 changes: 1 addition & 1 deletion types/schemas/app/ApplicationData.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {PrimaryApplicationType} from '../digitalPlanningApplication/enums/ApplicationTypes';
import {PrimaryApplicationType} from '../application/enums/ApplicationTypes';

/**
* Base type for ApplicationData. Contains all shared properties across all application types
Expand Down
2 changes: 1 addition & 1 deletion types/schemas/app/User.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {PrimaryApplicationType} from '../digitalPlanningApplication/enums/ApplicationTypes';
import {PrimaryApplicationType} from '../application/enums/ApplicationTypes';

export interface UserBase {
role: 'applicant' | 'agent' | 'proxy';
Expand Down
2 changes: 1 addition & 1 deletion types/schemas/app/index.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import {
ApplicationTypeKeys,
PrimaryApplicationType,
} from '../digitalPlanningApplication/enums/ApplicationTypes';
} from '../application/enums/ApplicationTypes';
import {ApplicationData} from './ApplicationData';
import {User} from './User';

Expand Down

0 comments on commit 20e5e4e

Please sign in to comment.