react-photo-studio
react-photo-studio copied to clipboard
Remove Non-null Assertions in Options
In Options.tsx
we do some non-null assertions which lint complains about.
As a temporary fix we have added // eslint-disable-next-line @typescript-eslint/no-non-null-assertion
before these lines.
Instead though we should remove these comments, and actually remove the assertion properly.