Remove unneeded curly brackets in import

This commit is contained in:
Jade Ellis 2024-09-15 18:08:32 +01:00
parent 76de8f4137
commit b793201792
No known key found for this signature in database
GPG key ID: 8705A2A3EBF77BD2

View file

@ -4,7 +4,7 @@ import { error, type RequestHandler } from '@sveltejs/kit'
import satori from 'satori';
import { Resvg } from '@resvg/resvg-js';
import { SITE_DOMAIN } from '$lib/metadata';
import TTLCache, { } from "@isaacs/ttlcache";
import TTLCache from "@isaacs/ttlcache";
import { format } from "@tusbar/cache-control";
const cache = new TTLCache({ max: 10000, ttl: 1000 * 60 * 60 })
import fnv from "fnv-plus"