fix(frontend): migrate type changes

Signed-off-by: Tilman Vatteroth <git@tilmanvatteroth.de>
This commit is contained in:
Tilman Vatteroth 2023-10-20 08:49:46 +02:00 committed by renovate[bot]
parent 2f5dadb981
commit 61362f9175
37 changed files with 80 additions and 79 deletions

View file

@ -42,6 +42,8 @@ export const ApplicationLoader: React.FC<PropsWithChildren> = ({ children }) =>
For further information look into the browser console.
</Fragment>
)
} else {
return null
}
}, [error])

View file

@ -11,7 +11,7 @@ import React from 'react'
import { Alert } from 'react-bootstrap'
export interface LoadingScreenProps {
errorMessage?: string | ReactElement
errorMessage?: string | ReactElement | null
}
/**