Skip to content

Commit

Permalink
#147 lint対応
Browse files Browse the repository at this point in the history
  • Loading branch information
ienaga committed Oct 16, 2023
1 parent c38be89 commit b5d66b8
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
5 changes: 3 additions & 2 deletions src/js/share/application/usecase/ShareInitializeUseCase.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,11 @@
*/
export const execute = (): void =>
{
const roomId: string = location.hash;
let roomId: string = location.hash;
if (!roomId) {
return ;
}


roomId = roomId.replace("#", "");
console.log(roomId);
};
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { execute as menuAllHideService } from "../../../menu/application/service/MenuAllHideService"
import { execute as menuAllHideService } from "../../../menu/application/service/MenuAllHideService";

/**
* @description ツールエリアでマウスダウンした際の関数
Expand Down
1 change: 0 additions & 1 deletion src/js/tool/domain/model/ArrowTool.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import { $TOOL_ARROW_NAME } from "../../../config/ToolConfig";
import { $setActiveTool } from "../../application/Tool";
import { BaseTool } from "./BaseTool";
import { execute as arrowToolInitializeUseCase } from "../../application/usecase/ArrowToolInitializeUseCase";

Expand Down

0 comments on commit b5d66b8

Please sign in to comment.