0
1
Fork 0

Remove dash

This commit is contained in:
William Buezas 2025-03-28 15:09:31 +01:00
parent de5285553d
commit bf22196e44
1 changed files with 1 additions and 1 deletions

View File

@ -8,7 +8,7 @@ const links = ref([]);
const getLinks = async () => {
try {
const filter = { order: 'name ASC' };
const { data } = await api.get('/Links', { params: { filter } });
const { data } = await api.get('Links', { params: { filter } });
links.value = data;
} catch (error) {
console.error('Error getting links:', error);