summaryrefslogtreecommitdiff
path: root/src/webex/i18n.tsx
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2020-04-06 13:32:56 +0530
committerFlorian Dold <florian.dold@gmail.com>2020-04-06 13:32:56 +0530
commitdee9ccf7b1dc7d5122907b9beea8442db2472d59 (patch)
tree3cfd8a6d704a99ff759bde4b9f35460bf1fc0fff /src/webex/i18n.tsx
parentf45e5615cc43f3ddfb527099049e723408376057 (diff)
downloadwallet-core-dee9ccf7b1dc7d5122907b9beea8442db2472d59.tar.gz
wallet-core-dee9ccf7b1dc7d5122907b9beea8442db2472d59.tar.bz2
wallet-core-dee9ccf7b1dc7d5122907b9beea8442db2472d59.zip
auto format
Diffstat (limited to 'src/webex/i18n.tsx')
-rw-r--r--src/webex/i18n.tsx8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/webex/i18n.tsx b/src/webex/i18n.tsx
index 2e753e441..a156cf834 100644
--- a/src/webex/i18n.tsx
+++ b/src/webex/i18n.tsx
@@ -226,8 +226,8 @@ export class TranslatePlural extends React.Component<
typeof childArray[i] === "string" &&
typeof childArray[i + 1] === "string"
) {
- childArray[i + i] = ((childArray[i] as string) +
- childArray[i + 1]) as string;
+ childArray[i + i] =
+ ((childArray[i] as string) + childArray[i + 1]) as string;
childArray.splice(i, 1);
}
}
@@ -267,8 +267,8 @@ export class TranslateSingular extends React.Component<
typeof childArray[i] === "string" &&
typeof childArray[i + 1] === "string"
) {
- childArray[i + i] = ((childArray[i] as string) +
- childArray[i + 1]) as string;
+ childArray[i + i] =
+ ((childArray[i] as string) + childArray[i + 1]) as string;
childArray.splice(i, 1);
}
}