You've already forked matrix-js-sdk
mirror of
https://github.com/matrix-org/matrix-js-sdk.git
synced 2025-11-25 05:23:13 +03:00
Fix ContentHelpers export
This was previously exporting a promise, since it called the import function manually but didn't await the result. However, since we have Babel we can just use the new export … as … from syntax instead. Signed-off-by: Robin Townsend <robin@robin.town>
This commit is contained in:
@@ -52,7 +52,7 @@ export * from "./store/session/webstorage";
|
||||
export * from "./crypto/store/memory-crypto-store";
|
||||
export * from "./crypto/store/indexeddb-crypto-store";
|
||||
export * from "./content-repo";
|
||||
export const ContentHelpers = import("./content-helpers");
|
||||
export * as ContentHelpers from "./content-helpers";
|
||||
export {
|
||||
createNewMatrixCall,
|
||||
setAudioOutput as setMatrixCallAudioOutput,
|
||||
|
||||
Reference in New Issue
Block a user