From 49b63154dfb819bef7ff05bf5bd3afd0c22335bb Mon Sep 17 00:00:00 2001 From: Andreas Nedbal Date: Sun, 1 May 2022 17:55:17 +0200 Subject: [PATCH] fix(client): fix missing import of defineAsyncComponent in os.ts --- packages/client/src/os.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/client/src/os.ts b/packages/client/src/os.ts index eada01bf2..06a8ff99d 100644 --- a/packages/client/src/os.ts +++ b/packages/client/src/os.ts @@ -1,6 +1,6 @@ // TODO: なんでもかんでもos.tsに突っ込むのやめたいのでよしなに分割する -import { Component, markRaw, Ref, ref } from 'vue'; +import { Component, markRaw, Ref, ref, defineAsyncComponent } from 'vue'; import { EventEmitter } from 'eventemitter3'; import insertTextAtCursor from 'insert-text-at-cursor'; import * as Misskey from 'misskey-js';