feat: bold red refresh error (#220)

* feat: bold red refresh error

* style: exclamation point location
This commit is contained in:
Samuel Gunter
2024-05-21 19:04:25 -07:00
committed by GitHub
parent 2f9e9b1297
commit 229a8a29e8

View File

@@ -56,7 +56,9 @@ export default function Description({ course }: DescriptionProps): JSX.Element {
return ( return (
<> <>
{status === LoadStatus.ERROR && ( {status === LoadStatus.ERROR && (
<Text color='theme-red'>Please refresh the page and log back in using your UT EID and password.</Text> <Text className='text-theme-red font-bold!'>
Please refresh the page and log back in using your UT EID and password.
</Text>
)} )}
{/* TODO (achadaga): would be nice to have a new spinner here */} {/* TODO (achadaga): would be nice to have a new spinner here */}
{status === LoadStatus.LOADING && <Spinner />} {status === LoadStatus.LOADING && <Spinner />}