mirror of
https://github.com/Steffo99/festa.git
synced 2024-12-22 22:54:22 +00:00
Fix missing translation dep
This commit is contained in:
parent
0308755aee
commit
952aefb839
1 changed files with 3 additions and 3 deletions
|
@ -38,7 +38,7 @@ export const EventsActionEdit = ({ data, mutate, save, setEditing }: EventsActio
|
|||
placeholder={t("eventNamePlaceholder")}
|
||||
/>
|
||||
),
|
||||
[mutate, name]
|
||||
[t, mutate, name]
|
||||
)
|
||||
}
|
||||
content={<>
|
||||
|
@ -51,7 +51,7 @@ export const EventsActionEdit = ({ data, mutate, save, setEditing }: EventsActio
|
|||
placeholder={t("eventDescriptionPlaceholder")}
|
||||
/>
|
||||
),
|
||||
[mutate, description]
|
||||
[t, mutate, description]
|
||||
)}
|
||||
{useMemo(
|
||||
() => (
|
||||
|
@ -62,7 +62,7 @@ export const EventsActionEdit = ({ data, mutate, save, setEditing }: EventsActio
|
|||
placeholder={t("eventPostcardPlaceholder")}
|
||||
/>
|
||||
),
|
||||
[mutate, postcard]
|
||||
[t, mutate, postcard]
|
||||
)}
|
||||
</>}
|
||||
/>
|
||||
|
|
Loading…
Reference in a new issue