Skip to content

Commit

Permalink
Fix deployment update + Bump web version
Browse files Browse the repository at this point in the history
  • Loading branch information
Redm4x committed Sep 26, 2023
1 parent aa0b904 commit a060c28
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions deploy-web/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion deploy-web/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cloudmos-app",
"version": "1.5.2",
"version": "1.5.3",
"description": "Web UI to deploy on the Akash Network and view statistic about network usage.",
"author": "Cloudmos",
"private": true,
Expand Down
4 changes: 2 additions & 2 deletions deploy-web/src/components/deploymentDetail/ManifestUpdate.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -160,8 +160,8 @@ export const ManifestUpdate: React.FunctionComponent<Props> = ({ deployment, lea
const leaseProviders = leases.map(lease => lease.provider).filter((v, i, s) => s.indexOf(v) === i);

for (const provider of leaseProviders) {
const provider = providers.find(x => x.owner === provider);
await sendManifest(provider, mani);
const providerInfo = providers.find(x => x.owner === provider);
await sendManifest(providerInfo, mani);
}

event(AnalyticsEvents.UPDATE_DEPLOYMENT, {
Expand Down

0 comments on commit a060c28

Please sign in to comment.