Skip to content

Commit

Permalink
Merge pull request #2654 from beautiful-boyyy/develop
Browse files Browse the repository at this point in the history
fix: fixed string trim issue
  • Loading branch information
1ncounter authored Nov 15, 2023
2 parents e7884fd + 3f3ad2f commit 629eaf8
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions packages/renderer-core/src/renderer/base.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -901,9 +901,6 @@ export default function baseRendererFactory(): IBaseRenderComponent {
});
return checkProps(res);
}
if (typeof props === 'string') {
return checkProps(props.trim());
}
return checkProps(props);
};

Expand Down

0 comments on commit 629eaf8

Please sign in to comment.