chore: redirect to sign in page instead of top page when signing out (#32)
This commit is contained in:
@@ -18,7 +18,7 @@ export default function DropdownLanguage({ locale, onChangeLocale }: Props) {
|
||||
</DropdownTrigger>
|
||||
<DropdownMenu aria-label="lacales">
|
||||
{locales.map((entry) => (
|
||||
<DropdownItem key={entry.code} onClick={() => onChangeLocale(entry.code)}>
|
||||
<DropdownItem key={entry.code} onPress={() => onChangeLocale(entry.code)}>
|
||||
{entry.name}
|
||||
</DropdownItem>
|
||||
))}
|
||||
|
||||
Reference in New Issue
Block a user