diff --git a/src/app/features/common-settings/general/RoomProfile.tsx b/src/app/features/common-settings/general/RoomProfile.tsx index 0f6b30389..4de33bb65 100644 --- a/src/app/features/common-settings/general/RoomProfile.tsx +++ b/src/app/features/common-settings/general/RoomProfile.tsx @@ -16,11 +16,11 @@ import { TextArea, } from 'folds'; import React, { FormEventHandler, useCallback, useMemo, useRef, useState } from 'react'; -import { EmojiBoard } from '../../../components/emoji-board'; import { useAtomValue } from 'jotai'; import Linkify from 'linkify-react'; import classNames from 'classnames'; import { JoinRule, MatrixError } from 'matrix-js-sdk'; +import { EmojiBoard } from '../../../components/emoji-board'; import { SequenceCard } from '../../../components/sequence-card'; import { SequenceCardStyle } from '../../room-settings/styles.css'; import { useRoom } from '../../../hooks/useRoom'; diff --git a/src/app/pages/client/SidebarNav.tsx b/src/app/pages/client/SidebarNav.tsx index a03035ee0..82d556a1e 100644 --- a/src/app/pages/client/SidebarNav.tsx +++ b/src/app/pages/client/SidebarNav.tsx @@ -48,7 +48,7 @@ export function SidebarNav() { style.removeProperty('animation'); return; } - const effectiveBg = lotusTerminal && chatBackground === 'none' ? 'tactical' : chatBackground; + const effectiveBg = chatBackground === 'none' ? 'tactical' : chatBackground; const bgStyle = getChatBg(effectiveBg, isDark, pauseAnimations); style.backgroundImage = (bgStyle.backgroundImage as string | undefined) ?? ''; style.backgroundColor = (bgStyle.backgroundColor as string | undefined) ?? '';