Skip to content

Commit

Permalink
chore: rethink condition
Browse files Browse the repository at this point in the history
  • Loading branch information
truemiller committed Dec 16, 2024
1 parent 3cd52f6 commit 814b633
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,6 @@ export const AgentNotRunningButton = () => {
const { hasEnoughServiceSlots } = useActiveStakingContractDetails();

const { masterSafesOwners } = useMultisigs(masterSafes);
console.log(masterSafesOwners);

const requiredStakedOlas =
selectedStakingProgramId &&
Expand Down Expand Up @@ -211,7 +210,7 @@ export const AgentNotRunningButton = () => {
if (masterEoa) otherChainOwners.delete(masterEoa?.address);

// 3. if there's more than one signer, there's a disrepancy, alert user
if (otherChainOwners.size > 0) {
if (otherChainOwners.size > 1) {
showNotification?.(
'You have safes on other chains. Please make sure you use the same signer on all chains.',
);
Expand Down

0 comments on commit 814b633

Please sign in to comment.