We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a57cbfc commit cf06307Copy full SHA for cf06307
src/ui/pages/events/ViewEvents.page.tsx
@@ -53,7 +53,13 @@ export const ViewEventsPage: React.FC = () => {
53
const shouldShow = event.upcoming || (!event.upcoming && showPrevious);
54
55
return (
56
- <Transition mounted={shouldShow} transition="fade" duration={400} timingFunction="ease">
+ <Transition
57
+ mounted={shouldShow}
58
+ transition="fade"
59
+ duration={400}
60
+ timingFunction="ease"
61
+ key={`${event.id}-tr-transition`}
62
+ >
63
{(styles) => (
64
<tr
65
style={{ ...styles, display: shouldShow ? 'table-row' : 'none' }}
0 commit comments