Skip to content

Commit

Permalink
fix: filter spaces in syntax
Browse files Browse the repository at this point in the history
Co-authored-by: eduardozgz <[email protected]>
  • Loading branch information
livingflore and eduardozgz committed Dec 31, 2024
1 parent 6692996 commit d68f7c7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,6 @@ export const createDataSourceMetadataMath = (i18n: i18n) =>
amount: nonDisplayableNumbers,
})
: "",
});
}).split(/\s+/).join(" ");
},
});
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,6 @@ export const createDataSourceMetadataMembers = (i18n: i18n) =>
? t(`display.connectedToAChannel`)
: "",
playingAGame: playing?.length ? t(`display.playingAGame`) : "",
});
}).split(/\s+/).join(" ");
},
});
});

0 comments on commit d68f7c7

Please sign in to comment.