Skip to content

Commit

Permalink
don't spam debug logs
Browse files Browse the repository at this point in the history
  • Loading branch information
Rico040 committed Jun 8, 2024
1 parent 22f8739 commit d312a26
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions plugins/lowercase/src/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,9 @@ const unpatchText = before("render", RN.Text, ([x]) => {
textTransform: 'lowercase'
};
x.style = newStyle;
console.log(x.style)
})


export function onUnload() {
unpatchText()
unpatchText();
}

0 comments on commit d312a26

Please sign in to comment.