Commit Graph

6130 Commits

Author SHA1 Message Date
Kalle
841e4ab28a Try to stabilize UserSearch onChange identity
Some checks are pending
E2E Tests / e2e (push) Waiting to run
Tests and checks on push / run-checks-and-tests (push) Waiting to run
Updates translation progress / update-translation-progress-issue (push) Waiting to run
These changes are not too scientific, can't reproduce this locally. Just trying something that seems like a reasonable bet.
2026-03-22 17:07:35 +02:00
Kalle
51f228b3f8 Fix React duplicate key error with initial users in UserSearch
Not really sure how this works exactly. It doesn't seem the user is visually duplicated despite clearly being there twice in data, something react-aria-components does under the hood perhaps?
2026-03-22 16:24:55 +02:00
Kalle
62df6eb348 Tweak footer text 2026-03-22 16:22:40 +02:00
Kalle
635cea5221 Make more space for change IGN admin action
Quite hacky but anyway the idea is to replace this whole UI in the future
2026-03-22 15:45:49 +02:00
Kalle
3906bad497 Disable i18next console log 2026-03-22 13:31:26 +02:00
Kalle
50d0afe22f Fix Edit brackets button seemingly not doing anything
Unclear if this happened in production too because we have React Compiler which I expect to auto-memoize most things.

The bug: The bug: The useMemo for the tournament object in to.$id.tsx:105 depended on [data], but data is created by JSON.parse(rawData) on every render, producing a new object reference each time. This made tournament a new object every render. In the admin page (to.$id.admin.tsx:45-47), there's a useEffect(() => setEditingProgression(false), [tournament]) intended to close the dialog after a successful bracket update. Since tournament was unstable, this effect fired on every render — including right after opening the dialog — instantly closing it.
2026-03-22 10:28:08 +02:00
Kalle
dd1a525e10 Improve finalize tournament button style
Old overflowed on mobile but also otherwise looked a bit dated
2026-03-22 09:59:27 +02:00
Kalle
929974535d Fix Subs tab shown when disabled in the settings
Also renamed the variables to better reflect the change from just subs to full on LFG
2026-03-22 09:34:59 +02:00
Kalle
f599c408fb Mark one more test as slow
Some checks are pending
E2E Tests / e2e (push) Waiting to run
Tests and checks on push / run-checks-and-tests (push) Waiting to run
Updates translation progress / update-translation-progress-issue (push) Waiting to run
2026-03-21 15:46:15 +02:00
Kalle
05df7d1421 Allow resizing textarea also horizontally 2026-03-21 15:30:46 +02:00
Cafy
e1054eda6e
badge: add badge for PEÑA DRAFT (#2865)
Co-authored-by: Kalle <38327916+Sendouc@users.noreply.github.com>
2026-03-21 15:19:52 +02:00
Kalle
56a835611a Update Biome to 2.4.8 2026-03-21 15:19:32 +02:00
dependabot[bot]
1e521966fe
build(deps): bump the minor-and-patch group across 1 directory with 7 updates (#2903)
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-03-21 15:13:02 +02:00
Kalle
ac81ec8a47
Add uid to .ics feed (#2889) 2026-03-21 15:06:24 +02:00
Kalle
3ec29883f5 Better LIVE tournament logic for streams sidebar 2026-03-21 15:02:47 +02:00
Kalle
74d7e4b05d Fix sidebar showing finalized tournament as LIVE 2026-03-21 14:55:07 +02:00
Kalle
3fc71191d7 More accurate round robin teams per group text for clarity 2026-03-21 14:55:07 +02:00
Kalle
42fbf60a3e Fix TOO_MANY_PLACEMENTS check when using different teams per group for different round robins 2026-03-21 14:55:06 +02:00
Kalle
52d41cfcc1 Fix MatchActionsBanPicker styles gone in the migration 2026-03-21 14:55:06 +02:00
Kalle
3c95f3c15c Fix bracket lines when bracket is compactified 2026-03-21 14:55:06 +02:00
Kalle
3138e63004 Fix PWA menu paddings 2026-03-21 14:41:37 +02:00
Great-Hero-YELLOW
569f2e5f3c
Stronghold Article: "NA League Returns for 2026" (#2892) 2026-03-21 13:58:57 +02:00
dependabot[bot]
a5e86ad2b7
build(deps): bump fast-xml-parser and @aws-sdk/xml-builder (#2891)
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-03-21 13:58:47 +02:00
Great-Hero-YELLOW
cc604b15a0
Update version-11.0.0-hype-moments-and-aura-and-luti.md (#2898) 2026-03-21 13:58:35 +02:00
dependabot[bot]
c42f509729
build(deps): bump kysely from 0.28.12 to 0.28.14 (#2902)
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-03-21 13:58:24 +02:00
Kalle
10801b6334
E2E test fixes (#2901) 2026-03-21 13:57:53 +02:00
hfcRed
dd85070350 Size leaderboard button
Some checks are pending
E2E Tests / e2e (push) Waiting to run
Tests and checks on push / run-checks-and-tests (push) Waiting to run
Updates translation progress / update-translation-progress-issue (push) Waiting to run
2026-03-21 02:37:01 +01:00
hfcRed
a8e36f8518 Merge branch 'main' of https://github.com/sendou-ink/sendou.ink 2026-03-21 02:36:44 +01:00
hfcRed
e70eb04113 Center tourney progress 2026-03-21 02:35:30 +01:00
Kalle
9f0e035341 Fix rotations not fetched in live env
Some checks are pending
E2E Tests / e2e (push) Waiting to run
Tests and checks on push / run-checks-and-tests (push) Waiting to run
Updates translation progress / update-translation-progress-issue (push) Waiting to run
The checked made no sense as VITE_PROD_MODE is not set in prod and we already have a guard against running routines in dev (in entry.server.tsx)
2026-03-20 19:42:12 +02:00
Kalle
011cf39dee Delete orphan art tags routine 2026-03-20 18:16:02 +02:00
Kalle
254425ef7f Show better error when no tags matching the tag filtered by 2026-03-20 18:08:03 +02:00
Kalle
19213056a7 Fix tournaments always reporting as not saved if placeholder team (in /looking) 2026-03-20 17:50:38 +02:00
Kalle
a1d2784a9e Add "Discover all the features" to the front page 2026-03-20 17:36:30 +02:00
Kalle
570da9541b Refresh stream cache when SendouQ match starts 2026-03-20 16:58:58 +02:00
Kalle
76a38950de Fix mobile chat input below keyboard 2026-03-20 16:58:46 +02:00
Kalle
f6c86eb4ca Increase sync rotations frequency 2026-03-20 16:58:22 +02:00
Kalle
4ad1186a17 Fix streams header spacing for PWA 2026-03-20 16:56:07 +02:00
Kalle
c3e5e73600 Fix SendouQ group chat not always showing 2026-03-20 16:55:46 +02:00
Kalle
4c3a279f7b Fix formatting 2026-03-20 16:54:33 +02:00
hfcRed
0e88532f3a Close mobile panel on notification click
Some checks are pending
E2E Tests / e2e (push) Waiting to run
Tests and checks on push / run-checks-and-tests (push) Waiting to run
Updates translation progress / update-translation-progress-issue (push) Waiting to run
2026-03-20 04:59:36 +01:00
hfcRed
2b53d38c63 Fix radio checked color 2026-03-20 04:54:43 +01:00
hfcRed
72671aaf9b More clearence for map pool selector 2026-03-20 04:48:39 +01:00
hfcRed
ef12b6beb0 Adjust view all buttons 2026-03-20 04:35:07 +01:00
hfcRed
e8a24543e3 Adjust avatar size for friend requests 2026-03-20 04:32:32 +01:00
hfcRed
7cb7710cc3 Prevent friend request username from overflowing 2026-03-20 04:28:47 +01:00
hfcRed
eecab39cd3 Fix scrollbar shifting layout 2026-03-20 04:22:19 +01:00
hfcRed
9acbac59f0 Hide sidebar overflow 2026-03-20 03:43:14 +01:00
hfcRed
96649b3e5d Fix dialog being behind mobile nav 2026-03-20 02:58:41 +01:00
hfcRed
c501f18fe6 Fix theme selector backdrop clipping navs 2026-03-20 02:56:22 +01:00