Skip to content

Commit

Permalink
Fix styling issues
Browse files Browse the repository at this point in the history
  • Loading branch information
fussel178 committed Dec 15, 2023
1 parent 5e5b419 commit 7d08991
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion frontend-react/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ import { initTelestion } from '@wuespace/telestion';
import '@wuspace/telestion/telestion.css';

initTelestion({
version: '0.1.0'
version: '0.1.0'
});
```

Expand Down
8 changes: 7 additions & 1 deletion frontend-react/vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,5 +40,11 @@ export default defineConfig({
});

function transformBanner(banner: Record<string, string>) {
return '/**\n' + Object.entries(banner).map(([key, value]) => ` * ${key}: ${value}\n`).join('') + '**/';
return (
'/**\n' +
Object.entries(banner)
.map(([key, value]) => ` * ${key}: ${value}\n`)
.join('') +
'**/'
);
}

0 comments on commit 7d08991

Please sign in to comment.