Skip to content

Commit

Permalink
Merge pull request #356 from gnosisguild/fix-direct-exec
Browse files Browse the repository at this point in the history
fix: error when executing as safe owner without mod
  • Loading branch information
jfschwarz authored Dec 16, 2024
2 parents e274976 + ed0e004 commit 492f7be
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
6 changes: 5 additions & 1 deletion extension/.vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,9 @@
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "explicit"
},
"typescript.tsdk": "node_modules/typescript/lib"
"typescript.tsdk": "node_modules/typescript/lib",
"search.exclude":{
"node_modules": true,
"public/build": true
}
}
2 changes: 1 addition & 1 deletion extension/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"check-types": "tsc --noEmit",
"check-cycles": "madge -c --warning --ts-config tsconfig.json ./src/panel/app.tsx ./src/background/index.ts",
"lint": "eslint . --max-warnings=0",
"fix": "pnpm fix:format && pnpm fix:lint",
"fix": "pnpm fix:lint",
"fix:lint": "pnpm check:lint --fix"
},
"devDependencies": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@ export const Submit = () => {
message: (
<a
href={`${EXPLORER_URL[chainId]}/tx/${txHash}`}
className="inline-flex items-center gap-1"
target="_blank"
rel="noopener noreferrer"
>
Expand All @@ -106,7 +107,8 @@ export const Submit = () => {
title: 'Transaction batch has been proposed for execution',
message: (
<a
href={`//app.safe.global/transactions/tx?safe=${avatar}&id=multisig_${avatarAddress}_${safeTxHash}`}
href={`https://app.safe.global/transactions/tx?safe=${avatar}&id=multisig_${avatarAddress}_${safeTxHash}`}
className="inline-flex items-center gap-1"
target="_blank"
rel="noopener noreferrer"
>
Expand All @@ -126,6 +128,7 @@ export const Submit = () => {
message: (
<a
href={`${EXPLORER_URL[chainId]}/tx/${txHash}`}
className="inline-flex items-center gap-1"
target="_blank"
rel="noopener noreferrer"
>
Expand Down

0 comments on commit 492f7be

Please sign in to comment.