mirror of
https://github.com/Qortal/chrome-extension.git
synced 2025-02-11 17:55:49 +00:00
fixes
This commit is contained in:
parent
0e516e4ce4
commit
753ba200d4
@ -1461,7 +1461,7 @@ function App() {
|
||||
}}
|
||||
/>
|
||||
</Box>
|
||||
{!isMobile && (
|
||||
|
||||
<>
|
||||
<Spacer height="15px" />
|
||||
<Box
|
||||
@ -1571,7 +1571,7 @@ function App() {
|
||||
)}
|
||||
</Box>
|
||||
</>
|
||||
)}
|
||||
|
||||
</>
|
||||
)}
|
||||
{/* {extState !== "not-authenticated" && (
|
||||
|
@ -1357,6 +1357,7 @@ export const Group = ({
|
||||
res(null);
|
||||
}, 200);
|
||||
});
|
||||
setSelectedDirect(null);
|
||||
setGroupSection("announcement");
|
||||
chrome?.runtime?.sendMessage({
|
||||
action: "addGroupNotificationTimestamp",
|
||||
@ -1378,6 +1379,7 @@ export const Group = ({
|
||||
}, 200);
|
||||
});
|
||||
setGroupSection("chat");
|
||||
setSelectedDirect(null);
|
||||
if (selectedGroupRef.current) {
|
||||
chrome?.runtime?.sendMessage({
|
||||
action: "addTimestampEnterChat",
|
||||
@ -2238,6 +2240,7 @@ export const Group = ({
|
||||
}}
|
||||
onClick={() => {
|
||||
setGroupSection("forum");
|
||||
setSelectedDirect(null);
|
||||
}}
|
||||
>
|
||||
<ForumIcon
|
||||
@ -2440,7 +2443,10 @@ export const Group = ({
|
||||
backgroundColor: groupSection === "forum" ? "white" : "black", // Focus state
|
||||
},
|
||||
}}
|
||||
onClick={() => setGroupSection("forum")}
|
||||
onClick={() => {
|
||||
setSelectedDirect(null);
|
||||
setGroupSection("forum")
|
||||
} }
|
||||
>
|
||||
Forum
|
||||
</Button>
|
||||
|
Loading…
x
Reference in New Issue
Block a user