Fixes navigation

This commit is contained in:
freearhey 2023-10-10 08:17:49 +03:00
parent 486bbf9a60
commit f377009397
5 changed files with 71 additions and 93 deletions

View file

@ -4,10 +4,11 @@
import Divider from '~/components/Divider.svelte'
import SquareButton from '~/components/SquareButton.svelte'
import { getContext } from 'svelte'
const { close } = getContext('simple-modal')
export let channel
const { close } = getContext('simple-modal')
const closePopup = () => {
close()
}