refactor: run formatter

This commit is contained in:
Elias Schneider
2024-11-26 20:58:32 +01:00
parent e86f93830b
commit 3df80acff9
6 changed files with 19 additions and 19 deletions

View File

@@ -77,7 +77,7 @@ export default function AppShellDemo() {
}
const index = updatedConfigVariables.findIndex(
(item) => item.key === configVariable.key
(item) => item.key === configVariable.key,
);
if (index > -1) {
@@ -144,7 +144,7 @@ export default function AppShellDemo() {
<Title order={6}>
<FormattedMessage
id={`admin.config.${camelToKebab(
configVariable.key
configVariable.key,
)}`}
/>
</Title>
@@ -159,7 +159,7 @@ export default function AppShellDemo() {
>
<FormattedMessage
id={`admin.config.${camelToKebab(
configVariable.key
configVariable.key,
)}.description`}
values={{ br: <br /> }}
/>