From 8f19be4947180cf77ea703a221b0152ce301d0cc Mon Sep 17 00:00:00 2001 From: nuxtreact Date: Tue, 10 Feb 2026 23:52:23 +0800 Subject: [PATCH 1/4] chore: fix some minor issues in the comments Signed-off-by: nuxtreact --- BUILDERS_PLAN.md | 2 +- DEPLOYMENT.md | 2 +- VALIDATOR_JOURNEY_ARCHITECTURE.md | 2 +- backend/contributions/tests/test_validator_creation.py | 2 +- backend/deploy-apprunner.sh | 2 +- frontend/CATEGORY_NAVIGATION_PLAN.md | 2 +- session-mgmt | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/BUILDERS_PLAN.md b/BUILDERS_PLAN.md index a46e9b52..c5a2b826 100644 --- a/BUILDERS_PLAN.md +++ b/BUILDERS_PLAN.md @@ -315,7 +315,7 @@ GET /api/v1/users/{id}/ # Returns user with all profiles # Category-specific profile updates PATCH /api/v1/validators/me/ # Update validator profile -PATCH /api/v1/builders/me/ # Update builder profile +PATCH /api/v1/builders/me/ # Update builder profile PATCH /api/v1/stewards/me/ # Update steward profile # Leaderboards diff --git a/DEPLOYMENT.md b/DEPLOYMENT.md index f810a7fe..2862f13d 100644 --- a/DEPLOYMENT.md +++ b/DEPLOYMENT.md @@ -132,7 +132,7 @@ Replace these URLs in your configuration: # Check App Runner service status aws apprunner describe-service --service-arn your-service-arn -# Check RDS instance status +# Check RDS instance status aws rds describe-db-instances --db-instance-identifier tally-db # View Amplify app diff --git a/VALIDATOR_JOURNEY_ARCHITECTURE.md b/VALIDATOR_JOURNEY_ARCHITECTURE.md index 64da567e..50cb53d7 100644 --- a/VALIDATOR_JOURNEY_ARCHITECTURE.md +++ b/VALIDATOR_JOURNEY_ARCHITECTURE.md @@ -36,7 +36,7 @@ FIX: - `last-update`: date ```python TYPES_RULES = { 'validator': lambda user: ( - # Has validator badge OR is in Validator model FIX: only has validator badge + # Has validator badge OR is in Validator model FIX: only has validator badge Contribution.objects.filter( user=user, contribution_type__slug='validator' diff --git a/backend/contributions/tests/test_validator_creation.py b/backend/contributions/tests/test_validator_creation.py index 1e1eca7c..dea3eb09 100644 --- a/backend/contributions/tests/test_validator_creation.py +++ b/backend/contributions/tests/test_validator_creation.py @@ -350,7 +350,7 @@ def test_admin_view_post_success(self): response = self.client.post(url, form_data, follow=False) - # Should redirect to user detail page + # Should redirect to user detail page self.assertEqual(response.status_code, 302) # Check user was created (address should be normalized to lowercase) diff --git a/backend/deploy-apprunner.sh b/backend/deploy-apprunner.sh index da07e7c2..d9ba847c 100755 --- a/backend/deploy-apprunner.sh +++ b/backend/deploy-apprunner.sh @@ -3,7 +3,7 @@ set -e # AWS App Runner Deployment Script with VPC Connector Support # -# Usage: +# Usage: # ./deploy-apprunner.sh [service-name] [vpc-connector-arn] # # Examples: diff --git a/frontend/CATEGORY_NAVIGATION_PLAN.md b/frontend/CATEGORY_NAVIGATION_PLAN.md index 3a30bd62..5c0fd46f 100644 --- a/frontend/CATEGORY_NAVIGATION_PLAN.md +++ b/frontend/CATEGORY_NAVIGATION_PLAN.md @@ -17,7 +17,7 @@ Create a category-based navigation system with three modes: Global, Builders, an - Border: `#FED7AA` (orange-200) - Text: `#EA580C` (orange-600) -### Validators +### Validators - Primary: Light blue (cool/sterile/technical) - Background: `#F0F9FF` (sky-50) - Accent: `#38BDF8` (sky-400) diff --git a/session-mgmt b/session-mgmt index aa08d14a..bd00927a 100755 --- a/session-mgmt +++ b/session-mgmt @@ -27,7 +27,7 @@ except: pass " | sort -n) - # Get all used frontend ports + # Get all used frontend ports used_frontend_ports=$(python3 -c " import json try: From 0ab7ef5ce13958144459ec525fa56275ee058c64 Mon Sep 17 00:00:00 2001 From: JoaquinBN Date: Thu, 12 Feb 2026 14:11:32 +0100 Subject: [PATCH 2/4] Add review delay notice to steward dashboard Display a temporary amber notice banner informing stewards and the community that contribution reviews will be delayed this week while submissions continue to be recorded. --- frontend/src/routes/StewardDashboard.svelte | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/frontend/src/routes/StewardDashboard.svelte b/frontend/src/routes/StewardDashboard.svelte index 2d64f38e..7dd36428 100644 --- a/frontend/src/routes/StewardDashboard.svelte +++ b/frontend/src/routes/StewardDashboard.svelte @@ -80,7 +80,17 @@

Steward Dashboard

- + + +
+ + + +

+ Contribution reviews will experience a brief delay this week. All submissions are being recorded and will be reviewed shortly. Thank you for your patience and continued participation. +

+
+ {#if loading}
From 47ed6e9b5ebb0e6bc2111ceb3fa056ea93b7d9d6 Mon Sep 17 00:00:00 2001 From: JoaquinBN Date: Thu, 12 Feb 2026 14:21:19 +0100 Subject: [PATCH 3/4] Move review delay notice to global layout and update text Move the temporary review delay banner from StewardDashboard to App.svelte so it displays on all pages. Simplify and finalize the notice text. --- frontend/src/App.svelte | 9 +++++++++ frontend/src/routes/StewardDashboard.svelte | 10 ---------- 2 files changed, 9 insertions(+), 10 deletions(-) diff --git a/frontend/src/App.svelte b/frontend/src/App.svelte index a30afc90..32041c57 100644 --- a/frontend/src/App.svelte +++ b/frontend/src/App.svelte @@ -287,6 +287,15 @@
+ +
+ + + +

+ Contribution reviews are currently delayed. All submissions are being recorded and will be reviewed shortly. Thank you for your patience and continued participation. +

+

Steward Dashboard

- -
- - - -

- Contribution reviews will experience a brief delay this week. All submissions are being recorded and will be reviewed shortly. Thank you for your patience and continued participation. -

-
- {#if loading}
From 4755cc3153b57b48b202306f84bf52c60ae1810b Mon Sep 17 00:00:00 2001 From: JoaquinBN Date: Thu, 12 Feb 2026 14:32:01 +0100 Subject: [PATCH 4/4] Fix background overlap issues in steward dashboard and contribution detail pages Remove negative margin hacks and simplify container styling to fix visual overlap problems. Use standard spacing and layout patterns. --- frontend/src/routes/ContributionTypeDetail.svelte | 2 +- frontend/src/routes/StewardDashboard.svelte | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/routes/ContributionTypeDetail.svelte b/frontend/src/routes/ContributionTypeDetail.svelte index daebdf22..25deef51 100644 --- a/frontend/src/routes/ContributionTypeDetail.svelte +++ b/frontend/src/routes/ContributionTypeDetail.svelte @@ -238,7 +238,7 @@ } -
+
{#if loading}
diff --git a/frontend/src/routes/StewardDashboard.svelte b/frontend/src/routes/StewardDashboard.svelte index a343de49..91dd9e2d 100644 --- a/frontend/src/routes/StewardDashboard.svelte +++ b/frontend/src/routes/StewardDashboard.svelte @@ -77,7 +77,7 @@ } -
+

Steward Dashboard