Merge pull request #12 from coolaj86/typo-constants

fix: contants => constants
This commit is contained in:
Timothy Jaeryang Baek 2023-10-21 15:58:12 -05:00 committed by GitHub
commit a82933376a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
import { ENDPOINT } from '$lib/contants';
import { ENDPOINT } from '$lib/constants';
import type { PageServerLoad } from './$types';
export const load: PageServerLoad = async ({ url }) => {

View File

@ -9,7 +9,7 @@
import 'highlight.js/styles/dark.min.css';
import type { PageData } from './$types';
import { ENDPOINT as SERVER_ENDPOINT } from '$lib/contants';
import { ENDPOINT as SERVER_ENDPOINT } from '$lib/constants';
import { onMount, tick } from 'svelte';
import { page } from '$app/stores';
const suggestions = $page.url.searchParams.get('suggestions');