Skip to content

Commit

Permalink
chore: fix type
Browse files Browse the repository at this point in the history
  • Loading branch information
lukasbach committed Jan 19, 2024
1 parent 980446e commit 5c251ac
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions packages/demodata/src/treeData.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
const readTemplate = (
template: any,
data: any = { items: {} }
): Record<any, any> => {
const readTemplate = (template: any, data: any = { items: {} }): any => {
for (const [key, value] of Object.entries(template)) {
// eslint-disable-next-line no-param-reassign
data.items[key] = {
Expand Down

0 comments on commit 5c251ac

Please sign in to comment.