You’ve got a bunch of Typescript files with both .ts
and.tsx
. You need to format them using prettier. Your code is managed with source control so you can back out of the changes whenever you need to.
Here’s a quick command line invocation to do it:
npx prettier -w '**/*.ts' '**/*.tsx'