Skip to content

Commit

Permalink
fix: remove console.log in runtime (#5532)
Browse files Browse the repository at this point in the history
  • Loading branch information
pearmini authored Sep 12, 2023
1 parent 3ae84d4 commit e9486dc
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/runtime/transform.ts
Original file line number Diff line number Diff line change
Expand Up @@ -342,6 +342,5 @@ function normalizedDataSource(data) {
if (!data) return { type: 'inline', value: null };
if (Array.isArray(data)) return { type: 'inline', value: data };
const { type = 'inline', ...rest } = data;
console.log(rest);
return { ...rest, type };
}

0 comments on commit e9486dc

Please sign in to comment.