From 56e69e00bc41999d0614b8d2782dfacf773e95cc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Chopin?= Date: Mon, 3 Jun 2024 18:02:59 +0200 Subject: [PATCH] fix(blob): add missing import for getQuery --- src/runtime/server/api/_hub/blob/index.post.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/runtime/server/api/_hub/blob/index.post.ts b/src/runtime/server/api/_hub/blob/index.post.ts index d25c5bdb..2a48e8c9 100644 --- a/src/runtime/server/api/_hub/blob/index.post.ts +++ b/src/runtime/server/api/_hub/blob/index.post.ts @@ -1,4 +1,4 @@ -import { eventHandler } from 'h3' +import { eventHandler, getQuery } from 'h3' import { hubBlob } from '../../../utils/blob' import { requireNuxtHubAuthorization } from '../../../utils/auth'