Skip to content

Commit

Permalink
remove bogus log messages (#2832)
Browse files Browse the repository at this point in the history
  • Loading branch information
wcandillon authored Dec 23, 2024
1 parent 5920b5d commit 65024d2
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions packages/skia/src/views/SkiaPictureView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ export class SkiaPictureView extends React.Component<SkiaPictureViewProps> {
}

componentDidUpdate(prevProps: SkiaPictureViewProps) {
console.log("componentDidUpdate");
const { picture, onSize } = this.props;
if (picture !== prevProps.picture) {
assertSkiaViewApi();
Expand Down Expand Up @@ -79,7 +78,6 @@ export class SkiaPictureView extends React.Component<SkiaPictureViewProps> {
*/
public redraw() {
assertSkiaViewApi();
console.log("Request redraw: ", this._nativeId);
SkiaViewApi.requestRedraw(this._nativeId);
}

Expand Down

0 comments on commit 65024d2

Please sign in to comment.