Skip to content

Commit

Permalink
run prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
jennantilla committed May 1, 2024
1 parent 691286f commit 37a4128
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -441,7 +441,7 @@ export namespace OneSignal {
// forces values to be string types
if (typeof value !== 'string') {
console.warn(
'OneSignal: addTag: tag value must be of type string; attempting to convert'
'OneSignal: addTag: tag value must be of type string; attempting to convert',
);
value = String(value);
}
Expand All @@ -468,7 +468,9 @@ export namespace OneSignal {
Object.keys(tags).forEach(function (key) {
if (typeof convertedTags[key] !== 'string') {
console.warn(
'OneSignal: addTags: tag value for key ' + key + ' must be of type string; attempting to convert'
'OneSignal: addTags: tag value for key ' +
key +
' must be of type string; attempting to convert',
);
convertedTags[key] = String(convertedTags[key]);
}
Expand Down

0 comments on commit 37a4128

Please sign in to comment.