Skip to content

Commit 37a4128

Browse files
committed
run prettier
1 parent 691286f commit 37a4128

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/index.ts

+4-2
Original file line numberDiff line numberDiff line change
@@ -441,7 +441,7 @@ export namespace OneSignal {
441441
// forces values to be string types
442442
if (typeof value !== 'string') {
443443
console.warn(
444-
'OneSignal: addTag: tag value must be of type string; attempting to convert'
444+
'OneSignal: addTag: tag value must be of type string; attempting to convert',
445445
);
446446
value = String(value);
447447
}
@@ -468,7 +468,9 @@ export namespace OneSignal {
468468
Object.keys(tags).forEach(function (key) {
469469
if (typeof convertedTags[key] !== 'string') {
470470
console.warn(
471-
'OneSignal: addTags: tag value for key ' + key + ' must be of type string; attempting to convert'
471+
'OneSignal: addTags: tag value for key ' +
472+
key +
473+
' must be of type string; attempting to convert',
472474
);
473475
convertedTags[key] = String(convertedTags[key]);
474476
}

0 commit comments

Comments
 (0)