File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
yarn-project/pxe/src/storage/tagging_data_provider Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -25,15 +25,15 @@ export class TaggingDataProvider {
2525 setTaggingSecretIndexesAsSender ( indexedTaggingSecrets : IndexedTaggingSecret [ ] ) {
2626 return Promise . all (
2727 indexedTaggingSecrets . map ( ( { directionalAppTaggingSecret, index } ) =>
28- this . #taggingSecretIndexesAsSenders. set ( ` ${ directionalAppTaggingSecret . toString ( ) } ` , index ) ,
28+ this . #taggingSecretIndexesAsSenders. set ( directionalAppTaggingSecret . toString ( ) , index ) ,
2929 ) ,
3030 ) ;
3131 }
3232
3333 setTaggingSecretsIndexesAsRecipient ( indexedTaggingSecrets : IndexedTaggingSecret [ ] ) {
3434 return Promise . all (
3535 indexedTaggingSecrets . map ( ( { directionalAppTaggingSecret, index } ) =>
36- this . #taggingSecretIndexesAsRecipients. set ( ` ${ directionalAppTaggingSecret . toString ( ) } ` , index ) ,
36+ this . #taggingSecretIndexesAsRecipients. set ( directionalAppTaggingSecret . toString ( ) , index ) ,
3737 ) ,
3838 ) ;
3939 }
You can’t perform that action at this time.
0 commit comments