فهرست منبع

refactor: fix import statement for isCreatablePagePathPattern by adding missing semicolon

Shun Miyazawa 8 ماه پیش
والد
کامیت
5d7d43aa7a
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  1. 1 1
      apps/app/src/features/openai/server/routes/middlewares/upsert-ai-assistant-validator.ts

+ 1 - 1
apps/app/src/features/openai/server/routes/middlewares/upsert-ai-assistant-validator.ts

@@ -1,6 +1,6 @@
 import { GroupType } from '@growi/core';
 import { type ValidationChain, body } from 'express-validator';
-import { isCreatablePagePathPattern } from '../../../utils/is-creatable-page-path-pattern'
+import { isCreatablePagePathPattern } from '../../../utils/is-creatable-page-path-pattern';
 
 import { AiAssistantShareScope, AiAssistantAccessScope } from '../../../interfaces/ai-assistant';