Login, logout and middleware updates

This commit is contained in:
Darren Clarke 2024-12-13 16:37:20 +01:00
parent f552f8024f
commit 9fb3665ced
18 changed files with 96 additions and 50 deletions

View file

@ -51,7 +51,12 @@ export const Select: FC<SelectProps> = ({
}}
>
{options.map((option: SelectOption) => (
<MenuItem key={option.value} value={option.value}>
<MenuItem
key={option.value}
value={option.value}
// @ts-ignore
disabled={option.disabled ?? false}
>
{option.label}
</MenuItem>
))}