forked from coracle/flotilla
11 lines
284 B
Svelte
11 lines
284 B
Svelte
<script lang="ts">
|
|
import {page} from "$app/stores"
|
|
import {goto} from "$app/navigation"
|
|
import {decodeRelay} from "@app/core/state"
|
|
import {makeSpacePath} from "@app/util/routes"
|
|
|
|
const url = decodeRelay($page.params.relay!)
|
|
|
|
goto(makeSpacePath(url, "recent"))
|
|
</script>
|