feat: aka without the at://

This commit is contained in:
Julien Calixte
2026-02-10 21:31:36 +01:00
parent fa2526bdc6
commit c638914f56
5 changed files with 17 additions and 29 deletions

View File

@@ -1,18 +0,0 @@
<script setup lang="ts">
import { noteRouter } from "@/modules/post/data/client"
const { data: notes, isLoading } = noteRouter.noteLists.get.useQuery(["notes"])
</script>
<template>
<div class="public-note-view" v-if="isLoading">
<ul>
<li v-for="note in notes">{{ note.did }} / {{ note.rkey }}</li>
</ul>
</div>
</template>
<style scoped lang="scss">
.public-note-view {
}
</style>