Skip to content

Commit

Permalink
fix(website): existing contract deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
mjlescano committed Oct 15, 2024
1 parent c70dfea commit 2a6dc65
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/website/src/features/Deploy/QueueFromGitOpsPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -548,8 +548,8 @@ export default function QueueFromGitOps() {
cannonfileUrlInput &&
cannonDefInfo?.def &&
!hasDeployers &&
cannonDefInfo.def.allActionNames.some((item) =>
item.startsWith('deploy.')
cannonDefInfo.def.allActionNames.some(
(item) => item.startsWith('deploy.') || item.startsWith('contract.')
)
);

Expand Down

0 comments on commit 2a6dc65

Please sign in to comment.