diff --git a/app/components/dashboard/links/Index.vue b/app/components/dashboard/links/Index.vue index 849e9e495..03a11e28e 100644 --- a/app/components/dashboard/links/Index.vue +++ b/app/components/dashboard/links/Index.vue @@ -8,7 +8,7 @@ let cursor = '' let listComplete = false let listError = false -const sortBy = ref('az') +const sortBy = ref('newest') const displayedLinks = computed(() => { const sorted = [...links.value] diff --git a/app/components/dashboard/links/Sort.vue b/app/components/dashboard/links/Sort.vue index d7196a5b6..421182f30 100644 --- a/app/components/dashboard/links/Sort.vue +++ b/app/components/dashboard/links/Sort.vue @@ -4,7 +4,7 @@ import { ArrowUpDown } from 'lucide-vue-next' defineProps({ sortBy: { type: String, - default: 'az', + default: 'newest', }, })