We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0f11595 commit 3275ad4Copy full SHA for 3275ad4
src/components/section/talent-pool/components/talent-card.svelte
@@ -22,7 +22,7 @@
22
};
23
export let contacts: Contact[] = [];
24
25
- let sortedContacts = contacts.sort((a, b) => CONTACT_PRIORITY_ORDER[b.type] - CONTACT_PRIORITY_ORDER[a.type]);
+ $: sortedContacts = contacts.sort((a, b) => CONTACT_PRIORITY_ORDER[b.type] - CONTACT_PRIORITY_ORDER[a.type]);
26
</script>
27
28
<div
0 commit comments