Skip to content

Commit

Permalink
Merge pull request #6 from COMPASS-DPG/dev-test
Browse files Browse the repository at this point in the history
npm run build fixes
  • Loading branch information
aman1esmagico authored Nov 24, 2023
2 parents 9d3a856 + 828602b commit 863eeeb
Show file tree
Hide file tree
Showing 17 changed files with 6 additions and 1,098 deletions.
1 change: 0 additions & 1 deletion next-env.d.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
/// <reference types="next" />
/// <reference types="next/image-types/global" />
/// <reference types="next/navigation-types/compat/navigation" />

// NOTE: This file should not be edited
// see https://nextjs.org/docs/basic-features/typescript for more information.
4 changes: 2 additions & 2 deletions src/app/setup-new-configuration/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ export type SurveyDataType = {
onboardingTime: string;
};

const SetupNewSurvey = ({ visible }: { visible: boolean }) => {
const [isOpen, setIsOpen] = useState(visible);
const SetupNewSurvey = () => {
const [isOpen, setIsOpen] = useState(false);
const [isSuccessPopUpOpen, setIsSuccessPopUpOpen] = useState(false);
const [isNewForm, setIsNewForm] = useState(false);

Expand Down
2 changes: 1 addition & 1 deletion src/components/Spinner.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ const Spinner = ({ classes = 'h-12 w-12' }: { classes?: string }) => {
<div role='status' className='flex items-center justify-center'>
<svg
aria-hidden='true'
className={`inline ${classes} animate-spin fill-blue-600 text-gray-200 dark:text-gray-600`}
className={`inline ${classes} animate-spin fill-gray-600 text-gray-200 dark:text-gray-600`}
viewBox='0 0 100 101'
fill='none'
xmlns='http://www.w3.org/2000/svg'
Expand Down
98 changes: 0 additions & 98 deletions src/components/forms/DatePicker.tsx

This file was deleted.

224 changes: 0 additions & 224 deletions src/components/forms/DropzoneInput.tsx

This file was deleted.

23 changes: 0 additions & 23 deletions src/components/forms/ErrorMessage.tsx

This file was deleted.

Loading

0 comments on commit 863eeeb

Please sign in to comment.