QQQ-32: export at bottom to match everything else

This commit is contained in:
Tim Chamberlain
2022-08-09 21:27:17 -05:00
parent 20e445f47c
commit 3aa5abc242

View File

@ -7,7 +7,7 @@ interface Props
errorMessage?: string;
}
export default function HandleAuthorizationError({errorMessage}: Props)
function HandleAuthorizationError({errorMessage}: Props)
{
const [, , removeCookie] = useCookies([SESSION_ID_COOKIE_NAME]);
@ -24,3 +24,5 @@ export default function HandleAuthorizationError({errorMessage}: Props)
HandleAuthorizationError.defaultProps = {
errorMessage: "User authorization error.",
};
export default HandleAuthorizationError;