From 331e13b7cb6af68f93f55ac397dec8062160e555 Mon Sep 17 00:00:00 2001 From: Andras Bacsai Date: Wed, 6 Jul 2022 16:13:11 +0200 Subject: [PATCH] fix: include post --- apps/ui/src/routes/destinations/index.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/ui/src/routes/destinations/index.svelte b/apps/ui/src/routes/destinations/index.svelte index a1d9d682d..d4d225439 100644 --- a/apps/ui/src/routes/destinations/index.svelte +++ b/apps/ui/src/routes/destinations/index.svelte @@ -22,7 +22,7 @@ import { t } from '$lib/translations'; import { appSession } from '$lib/store'; - import { get } from '$lib/api'; + import { get, post } from '$lib/api'; const ownDestinations = destinations.filter((destination) => { if (destination.teams[0].id === $appSession.teamId) {