fix: use masto composable on public pages (#135)
parent
39b005899e
commit
f3ebdf3123
|
@ -1,5 +1,5 @@
|
|||
<script setup lang="ts">
|
||||
const paginator = masto.timelines.getPublicIterable()
|
||||
const paginator = useMasto().timelines.getPublicIterable()
|
||||
|
||||
useHead({
|
||||
title: 'Federated',
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<script setup lang="ts">
|
||||
const paginator = masto.timelines.getPublicIterable({ local: true })
|
||||
const paginator = useMasto().timelines.getPublicIterable({ local: true })
|
||||
|
||||
useHead({
|
||||
title: 'Local',
|
||||
|
|
Loading…
Reference in New Issue