Skip to content

Commit

Permalink
fix: storage type
Browse files Browse the repository at this point in the history
  • Loading branch information
wkolod committed Feb 7, 2024
1 parent 9cd0a1e commit eef0dd9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/stack.ts
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ class StackService extends NodeService<Stack> {
service.setFunction(functions.NODE_UPDATE);

const optionsFromVault = {
storage: service.object.__cloud__ ? StorageType.S3 : StorageType.ARWEAVE
storage: service.vault.cloud ? StorageType.S3 : StorageType.ARWEAVE
}
const uploadOptions = {
...optionsFromVault,
Expand Down

0 comments on commit eef0dd9

Please sign in to comment.