diff --git a/src/Components/Map/Subcomponents/ItemPopupComponents/PopupStartEndInput.tsx b/src/Components/Map/Subcomponents/ItemPopupComponents/PopupStartEndInput.tsx index 5b1aea92..1106184d 100644 --- a/src/Components/Map/Subcomponents/ItemPopupComponents/PopupStartEndInput.tsx +++ b/src/Components/Map/Subcomponents/ItemPopupComponents/PopupStartEndInput.tsx @@ -3,7 +3,7 @@ import { TextInput } from '#components/Input' import type { Item } from '#types/Item' -interface StartEndInputProps { +export interface StartEndInputProps { item?: Item showLabels?: boolean updateStartValue?: (value: string) => void diff --git a/src/Components/Profile/templateComponents/index.tsx b/src/Components/Profile/templateComponents/index.tsx index f17b55ce..46be2158 100644 --- a/src/Components/Profile/templateComponents/index.tsx +++ b/src/Components/Profile/templateComponents/index.tsx @@ -5,6 +5,7 @@ import { PopupButton as PlainPopupButton, PopupCheckboxInput as PlainPopupCheckboxInput, PopupTextAreaInput as PlainPopupTextAreaInput, + PopupStartEndInput as PlainPopupStartEndInput, } from '#components/Map/Subcomponents/ItemPopupComponents' import { Templateify } from './Templateify' @@ -18,6 +19,7 @@ export const PopupTextInput = Templateify(PlainPopupTextInput) export const PopupButton = Templateify(PlainPopupButton) export const PopupCheckboxInput = Templateify(PlainPopupCheckboxInput) export const PopupTextAreaInput = Templateify(PlainPopupTextAreaInput) +export const PopupStartEndInput = Templateify(PlainPopupStartEndInput) export const Test = () => { return