diff options
author | eug-vs <eug-vs@keemail.me> | 2020-12-04 02:11:42 +0300 |
---|---|---|
committer | eug-vs <eug-vs@keemail.me> | 2020-12-04 02:11:42 +0300 |
commit | 43e81090ef8301b326f9721251bad1fe10ab18f8 (patch) | |
tree | 53744f8930a94d99bf3fe92fab5a00da83de1c14 /src/components | |
parent | 39354cc8378df6a11c50b404b050e1636958ea96 (diff) | |
download | famcs-kit-43e81090ef8301b326f9721251bad1fe10ab18f8.tar.gz |
refactor: use formik in EventForm
Diffstat (limited to 'src/components')
-rw-r--r-- | src/components/EventCard/Logs.tsx | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/components/EventCard/Logs.tsx b/src/components/EventCard/Logs.tsx index d78fbd8..4dae956 100644 --- a/src/components/EventCard/Logs.tsx +++ b/src/components/EventCard/Logs.tsx @@ -6,8 +6,6 @@ interface PropTypes { eventId: string; } -const DATE_OPTIONS = { dateStyle: 'short' }; - const Logs: React.FC<PropTypes> = ({ eventId }) => { const { data: logs } = useEventLogs(eventId); |