Skip to content

Commit

Permalink
Resolve merge conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
kyle1morel committed May 21, 2024
1 parent 4d49efa commit 98ddbf2
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 9 deletions.
6 changes: 0 additions & 6 deletions app/src/db/prisma/schema.prisma
Original file line number Diff line number Diff line change
Expand Up @@ -215,9 +215,3 @@ model user {
@@index([identity_id], map: "user_identity_id_index")
@@index([username], map: "user_username_index")
}

enum yes_no_unsure {
Yes
No
Unsure
}
3 changes: 1 addition & 2 deletions frontend/src/components/intake/ShasIntakeForm.vue
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ import {
StepperNavigation,
TextArea
} from '@/components/form';
import { intakeSchema } from '@/components/intake/ShasIntakeSchema';
import {
Accordion,
AccordionTab,
Expand All @@ -40,8 +41,6 @@ import {
YesNoUnsure
} from '@/utils/constants';
import { BASIC_RESPONSES, INTAKE_FORM_CATEGORIES, PROJECT_LOCATION } from '@/utils/enums';
import { deepToRaw } from '@/utils/utils';
import { intakeSchema } from './ShasIntakeSchema';
import type { Ref } from 'vue';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import { createTestingPinia } from '@pinia/testing';
import { mount, RouterLinkStub } from '@vue/test-utils';
import { nextTick } from 'vue';

import ShasIntakeForm from '@/components/intake/ShasIntakeForm.vue';
import { intakeSchema } from '@/components/intake/ShasIntakeSchema';
Expand Down

0 comments on commit 98ddbf2

Please sign in to comment.