From e2709b28b151c247da94861063882dfbce8509ed Mon Sep 17 00:00:00 2001 From: Ajay Bura <32841439+ajbura@users.noreply.github.com> Date: Mon, 11 Aug 2025 20:28:59 +0530 Subject: [PATCH] remove unused import --- src/app/components/user-profile/UserRoomProfile.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/components/user-profile/UserRoomProfile.tsx b/src/app/components/user-profile/UserRoomProfile.tsx index ad23fef1..a25c5434 100644 --- a/src/app/components/user-profile/UserRoomProfile.tsx +++ b/src/app/components/user-profile/UserRoomProfile.tsx @@ -10,7 +10,7 @@ import { useRoom } from '../../hooks/useRoom'; import { useUserPresence } from '../../hooks/useUserPresence'; import { IgnoredUserAlert, MutualRoomsChip, OptionsChip, ServerChip, ShareChip } from './UserChips'; import { AsyncStatus, useAsyncCallback } from '../../hooks/useAsyncCallback'; -import { createDM, ignore } from '../../../client/action/room'; +import { createDM } from '../../../client/action/room'; import { hasDevices } from '../../../util/matrixUtil'; import { useRoomNavigate } from '../../hooks/useRoomNavigate'; import { useAlive } from '../../hooks/useAlive';