fix: async innecesario

This commit is contained in:
2025-11-14 18:26:14 -03:00
parent ccebc7934c
commit e08cb337d0

View File

@@ -4,8 +4,8 @@
import { Content } from '@/components/ui/card';
import { apiBase } from '@/stores/url';
$effect(async()=>{
await getPosts();
$effect(()=>{
getPosts();
});
let posts: Post[] = $state([]);