handle other error on user screen
This commit is contained in:
parent
cfa2261cd5
commit
0574d4e8d0
@ -26,16 +26,18 @@ export const UserPage = () => {
|
||||
{acc.isLoading && <h1>Отправляем запрос</h1>}
|
||||
{acc.isSuccess && <h1>Успешно</h1>}
|
||||
|
||||
{acc.error &&
|
||||
(acc as any).error?.data?.body?.errorMessage ===
|
||||
'Code is expired' && (
|
||||
<div style={{ padding: 12, marginTop: 24, fontSize: 36 }}>
|
||||
<ErrorSpan>
|
||||
Не удалось активировать код доступа. Попробуйте отсканировать
|
||||
код еще раз
|
||||
</ErrorSpan>
|
||||
</div>
|
||||
)}
|
||||
{acc.error && (
|
||||
<div style={{ padding: 12, marginTop: 24, fontSize: 36 }}>
|
||||
<ErrorSpan>
|
||||
{(acc as any).error?.data?.body?.errorMessage ===
|
||||
'Code is expired' ? (
|
||||
'Не удалось активировать код доступа. Попробуйте отсканировать кодеще раз'
|
||||
) : (
|
||||
<pre>{JSON.stringify(acc.error, null, 4)}</pre>
|
||||
)}
|
||||
</ErrorSpan>
|
||||
</div>
|
||||
)}
|
||||
<h1>Тема занятия - {ls.data?.body?.name}</h1>
|
||||
<span>{dayjs(ls.data?.body?.date).format('DD MMMM YYYYг.')}</span>
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user