1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-08-04 13:48:56 +02:00

chore: prevent cleanup reminder actions shrink

This commit is contained in:
kwasniew 2025-07-22 12:07:33 +02:00
parent f04dd454d9
commit 01c7404d33
No known key found for this signature in database
GPG Key ID: 43A7CBC24C119560

View File

@ -29,6 +29,7 @@ const ActionsBox = styled(Box)(({ theme }) => ({
display: 'flex',
gap: theme.spacing(1),
alignItems: 'center',
flexShrink: 0,
}));
type ReminderType = 'complete' | 'removeCode' | 'archive' | null;