-
Notifications
You must be signed in to change notification settings - Fork 131
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update biome, fix and enforce recommended rules #213
Conversation
Brandon Vandegrift seems not to be a GitHub user. You need a GitHub account to be able to sign the CLA. If you have already a GitHub account, please add the email address used for this commit to your account. You have signed the CLA already but the status is still pending? Let us recheck it. |
a599a32
to
fc7222e
Compare
fc7222e
to
404052f
Compare
404052f
to
94cf819
Compare
94cf819
to
93b139c
Compare
I've rebased this PR onto the latest master branch, and applied additional biome fixes to the latest changes. @Hunter275 let me know if you have any questions or concerns. |
@bmv437 perfect I’ll work on testing this and merging this weekend |
Very excited for this change! |
Most changes in this PR are auto-fixes from running
biome check . --write
.Notable changes:
all
torecommended
.useToast
from using auseState
+useEffect
to auseSyncExternalStore
instead. This was because Biome showed an error where theuseEffect
did not havelisteners
in it's dependencies array. Seeing thatlisteners
didn't actually belong in theuseEffect
dependencies, I noticed this was actually a better fit foruseSyncExternalStore
.