fixed network config and wrong paths in frontend

This commit is contained in:
2025-12-29 22:12:39 +01:00
parent 610fd74e89
commit fb514f1efe
14 changed files with 599 additions and 36 deletions

View File

@@ -43,7 +43,7 @@
<script setup lang="ts">
import { onMounted, ref } from 'vue'
import { fetchFriends, fetchFriendRequests, acceptFriendRequest, sendFriendRequest } from '../api/friends'
import type { Friend, FriendRequest } from '../api'
import type { Friend, FriendRequest } from '../types'
const friends = ref<Friend[]>([])
const requests = ref<FriendRequest[]>([])