Fix modal history

This commit is contained in:
Jon Staab
2024-08-08 17:22:17 -07:00
parent 028ff71e8f
commit 51cfa5f0e8
11 changed files with 86 additions and 20 deletions
+2 -1
View File
@@ -3,11 +3,12 @@
import Field from '@lib/components/Field.svelte'
import Icon from '@lib/components/Icon.svelte'
import InfoNip29 from '@app/components/InfoNip29.svelte'
import SpaceCreateFinish from '@app/components/SpaceCreateFinish.svelte'
import {pushModal} from '@app/modal'
const back = () => history.back()
const next = () => pushModal()
const next = () => pushModal(SpaceCreateFinish)
const showNip29Info = () => pushModal(InfoNip29)