Skip to content
This repository has been archived by the owner on Aug 1, 2022. It is now read-only.

Commit

Permalink
fix: fix multisig org anchor buttons
Browse files Browse the repository at this point in the history
Signed-off-by: Rūdolfs Ošiņš <rudolfs@osins.org>
  • Loading branch information
rudolfs committed Dec 17, 2021
1 parent 0ce7ff4 commit 834f9f2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion ui/App/OrgScreen/route.ts
Expand Up @@ -65,7 +65,8 @@ export async function load(params: Params): Promise<LoadedRoute> {
const showWriteActions =
!!walletAddress &&
owner.metadata.members.some(
memberAddress => memberAddress === walletAddress
memberAddress =>
memberAddress.toLowerCase() === walletAddress.toLowerCase()
);
if (params.view === "projects") {
return {
Expand Down

0 comments on commit 834f9f2

Please sign in to comment.