File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
governance/xc_admin/packages/xc_admin_frontend/components/tabs Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -254,7 +254,7 @@ const General = () => {
254254 const handleSendProposalButtonClick = async ( ) => {
255255 if ( pythProgramClient && dataChanges && ! isMultisigLoading && squads ) {
256256 const instructions : TransactionInstruction [ ] = [ ]
257- Object . keys ( dataChanges ) . forEach ( async ( symbol ) => {
257+ for ( const symbol of Object . keys ( dataChanges ) ) {
258258 const multisigAuthority = squads . getAuthorityPDA (
259259 PRICE_FEED_MULTISIG [ getMultisigCluster ( cluster ) ] ,
260260 1
@@ -402,7 +402,7 @@ const General = () => {
402402 . then ( ( instruction ) => instructions . push ( instruction ) )
403403 } )
404404 }
405- } )
405+ }
406406
407407 setIsSendProposalButtonLoading ( true )
408408 try {
You can’t perform that action at this time.
0 commit comments