diff --git a/.changeset/good-islands-divide.md b/.changeset/good-islands-divide.md new file mode 100644 index 000000000..e6fe856d8 --- /dev/null +++ b/.changeset/good-islands-divide.md @@ -0,0 +1,5 @@ +--- +"@layerzerolabs/ua-devtools": patch +--- + +Fixes configureOAppDelegates configurator ordering diff --git a/packages/ua-devtools/src/oapp/config.ts b/packages/ua-devtools/src/oapp/config.ts index 85d028b01..89ff29f02 100644 --- a/packages/ua-devtools/src/oapp/config.ts +++ b/packages/ua-devtools/src/oapp/config.ts @@ -618,7 +618,6 @@ const enforcedOptionsReducer = ( export const configureOApp: OAppConfigurator = withOAppLogger( createConfigureMultiple( - configureOAppDelegates, configureOAppPeers, configureSendLibraries, configureReceiveLibraries, @@ -626,7 +625,8 @@ export const configureOApp: OAppConfigurator = withOAppLogger( configureSendConfig, configureReceiveConfig, configureEnforcedOptions, - configureCallerBpsCap + configureCallerBpsCap, + configureOAppDelegates ), { onStart: (logger) => logger.info(`Checking OApp configuration`),