diff --git a/src/components/ContactsOverview.svelte b/src/components/ContactsOverview.svelte index 35538de8..31fcc9df 100644 --- a/src/components/ContactsOverview.svelte +++ b/src/components/ContactsOverview.svelte @@ -2,9 +2,11 @@ import { _ } from "svelte-i18n"; import Toastify from "toastify-js"; import { GroupContactService } from "@odit/lfk-client-js"; - const promise = GroupContactService.groupContactControllerGetAll().then(result=>{ - current_contacts=result; - }) + const promise = GroupContactService.groupContactControllerGetAll().then( + (result) => { + current_contacts = result; + } + ); import store from "../store"; import ContactsEmptyState from "./ContactsEmptyState.svelte"; $: searchvalue = ""; @@ -77,18 +79,18 @@