Skip to content

Commit 979bcf1

Browse files
committed
lint: shorthand 적용
#36
1 parent 39df460 commit 979bcf1

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

β€Žserver/src/ai/ai.service.tsβ€Ž

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -178,11 +178,11 @@ export class AiService {
178178

179179
const pageUpdateOperation: RemotePageUpdateOperation = {
180180
type: "pageUpdate",
181-
workspaceId: workspaceId,
181+
workspaceId,
182182
pageId: pageCreator.currentPage.id,
183183
title: pageCreator.pageTitle,
184184
icon: pageCreator.currentPage.icon,
185-
clientId: clientId,
185+
clientId,
186186
};
187187

188188
this.workspaceService
@@ -605,11 +605,11 @@ export class AiService {
605605

606606
const pageUpdateOperation: RemotePageUpdateOperation = {
607607
type: "pageUpdate",
608-
workspaceId: workspaceId,
608+
workspaceId,
609609
pageId: pageCreator.currentPage.id,
610610
title: pageCreator.pageTitle,
611611
icon: "AI",
612-
clientId: clientId,
612+
clientId,
613613
};
614614

615615
const currentWorkspace = await this.workspaceService.getWorkspace(workspaceId);

0 commit comments

Comments
Β (0)