mirror of
https://github.com/revoltchat/revite.git
synced 2024-11-12 18:29:57 -05:00
fix: actually close error modal
This commit is contained in:
parent
56f59d132b
commit
6915186738
1 changed files with 1 additions and 1 deletions
|
@ -11,7 +11,7 @@ export function ErrorModal({ onClose, error }: Props) {
|
||||||
return (
|
return (
|
||||||
<Modal
|
<Modal
|
||||||
visible={true}
|
visible={true}
|
||||||
onClose={() => false}
|
onClose={onClose}
|
||||||
title={<Text id="app.special.modals.error" />}
|
title={<Text id="app.special.modals.error" />}
|
||||||
actions={[
|
actions={[
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue