1
0
Fork 0
mirror of synced 2024-07-14 18:55:45 +12:00

Fixes and linting

This commit is contained in:
Dean 2023-07-17 17:44:54 +01:00
parent da677864c0
commit 19c73dc20e
2 changed files with 2 additions and 2 deletions

View file

@ -21,7 +21,7 @@ export const TOUR_KEYS = {
FEATURE_ONBOARDING: "feature-onboarding",
}
const endUserOnboarding = async ({ skipped = false }) => {
const endUserOnboarding = async ({ skipped = false } = {}) => {
// Mark the users onboarding as complete
// Clear all tour related state
if (get(auth).user) {

View file

@ -27,7 +27,7 @@
import TourPopover from "components/portal/onboarding/TourPopover.svelte"
import BuilderSidePanel from "./_components/BuilderSidePanel.svelte"
import UserAvatars from "./_components/UserAvatars.svelte"
import { TOUR_KEYS, TOURS } from "components/portal/onboarding/tours.js"
import { TOUR_KEYS } from "components/portal/onboarding/tours.js"
import PreviewOverlay from "./_components/PreviewOverlay.svelte"
export let application