Skip to content

Commit 1d79e23

Browse files
committed
chore: remove unused async keyword
1 parent 813e17e commit 1d79e23

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

packages/astro/src/integration/create-integration.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ function createIntegration<Params extends HotloadAstroClerkIntegrationParams>()
2828
return {
2929
name: '@clerk/astro/integration',
3030
hooks: {
31-
'astro:config:setup': async ({ config, injectScript, updateConfig, logger, command }) => {
31+
'astro:config:setup': ({ config, injectScript, updateConfig, logger, command }) => {
3232
if (['server', 'hybrid'].includes(config.output) && !config.adapter) {
3333
logger.error('Missing adapter, please update your Astro config to use one.');
3434
}

0 commit comments

Comments
 (0)