Skip to content

Commit

Permalink
feat: allow getBundleIDFromInstallation to be called with a promise
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris-Hibbert committed Oct 22, 2024
1 parent 735a449 commit bf4ba98
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/zoe/src/typeGuards.js
Original file line number Diff line number Diff line change
Expand Up @@ -347,7 +347,7 @@ export const ZoeServiceI = M.interface('ZoeService', {
getInstallationForInstance: M.callWhen(M.await(InstanceHandleShape)).returns(
M.eref(M.remotable('Installation')),
),
getBundleIDFromInstallation: M.call(InstallationShape).returns(
getBundleIDFromInstallation: M.callWhen(M.await(InstallationShape)).returns(
M.eref(M.string()),
),

Expand Down

0 comments on commit bf4ba98

Please sign in to comment.