+export const activityResolver = zodResolver(activitySchema)
diff --git a/app/components/customDateTimePicker/dateTimePickerWrapper.tsx b/app/components/customDateTimePicker/dateTimePickerWrapper.tsx
deleted file mode 100644
index 1e87eaa..0000000
--- a/app/components/customDateTimePicker/dateTimePickerWrapper.tsx
+++ /dev/null
@@ -1,117 +0,0 @@
-import { DateTimePicker as ReactDateTimePicker } from 'react-datetime-picker'
-import { useColorMode } from '@chakra-ui/react'
-import { MdCalendarToday, MdClose } from 'react-icons/md'
-import 'react-clock/dist/Clock.css'
-import 'react-datetime-picker/dist/DateTimePicker.css'
-import 'react-calendar/dist/Calendar.css'
-
-type ValuePiece = Date | null
-type Value = ValuePiece | [ValuePiece, ValuePiece]
-
-// TODO Delete this and use react date picker for time as well
-export const CustomDateTimePicker = ({
- onChange,
- value
-}: {
- onChange: (value: Value) => void
- value: Value
-}) => {
- const { colorMode } = useColorMode()
-
- return (
- <>
-
-
-
- }
- clearIcon={}
- format={'y-MM-dd h:mm a'}
- />
-
- >
- )
-}
diff --git a/app/components/customDateTimePicker/index.ts b/app/components/customDateTimePicker/index.ts
deleted file mode 100644
index 7137b21..0000000
--- a/app/components/customDateTimePicker/index.ts
+++ /dev/null
@@ -1 +0,0 @@
-export { CustomDateTimePicker } from './dateTimePickerWrapper'
diff --git a/app/components/customDateTimePicker/stories/dateTimePicker.stories.tsx b/app/components/customDateTimePicker/stories/dateTimePicker.stories.tsx
deleted file mode 100644
index a75c5d8..0000000
--- a/app/components/customDateTimePicker/stories/dateTimePicker.stories.tsx
+++ /dev/null
@@ -1,18 +0,0 @@
-import { StoryObj, Meta } from '@storybook/react'
-import { CustomDateTimePicker } from '../index' // Adjust the import path accordingly
-
-const meta: Meta = {
- title: 'CustomDateTimePicker',
- component: CustomDateTimePicker
-}
-
-export default meta
-
-type Story = StoryObj
-
-export const Default: Story = {
- args: {
- onChange: (value) => console.log(value),
- value: new Date()
- }
-}
diff --git a/app/components/date/custom-date-picker.tsx b/app/components/date/custom-date-picker.tsx
index 8cbde6d..ef44e4d 100644
--- a/app/components/date/custom-date-picker.tsx
+++ b/app/components/date/custom-date-picker.tsx
@@ -104,3 +104,132 @@ export const CustomDatePicker = ({