Skip to content

Commit a4819e0

Browse files
committed
Small bug fixes
1 parent f642ace commit a4819e0

File tree

2 files changed

+2
-13
lines changed

2 files changed

+2
-13
lines changed

web/src/app/chat/components/ChatPage.tsx

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1142,18 +1142,7 @@ export function ChatPage({
11421142
</Dropzone>
11431143
) : (
11441144
<div className="mx-auto h-full flex">
1145-
<div
1146-
style={{ transition: "width 0.30s ease-out" }}
1147-
className={`flex-none bg-transparent transition-all bg-opacity-80 duration-300 ease-in-out h-full
1148-
${
1149-
sidebarVisible && !settings?.isMobile
1150-
? "w-[250px] "
1151-
: "w-[0px]"
1152-
}`}
1153-
/>
1154-
<div className="my-auto">
1155-
<OnyxInitializingLoader />
1156-
</div>
1145+
<OnyxInitializingLoader />
11571146
</div>
11581147
)}
11591148
</div>

web/src/sections/AppSidebar/Settings.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ export default function Settings({ folded }: SettingsProps) {
147147
{`Notifications ${(notifications && notifications.length) || 0 > 0 ? `(${notifications!.length})` : ""}`}
148148
</MenuButton>
149149

150-
{!showLogout && (
150+
{showLogout && (
151151
<>
152152
{(showCuratorPanel ||
153153
showAdminPanel ||

0 commit comments

Comments
 (0)