Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion BUILDERS_PLAN.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion DEPLOYMENT.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion VALIDATOR_JOURNEY_ARCHITECTURE.md
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion backend/contributions/tests/test_validator_creation.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion backend/deploy-apprunner.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion frontend/CATEGORY_NAVIGATION_PLAN.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
9 changes: 9 additions & 0 deletions frontend/src/App.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -287,6 +287,15 @@
<div class="flex-1 flex overflow-hidden">
<Sidebar bind:isOpen={sidebarOpen} />
<main class="flex-1 overflow-y-auto container mx-auto px-4 py-4 md:py-6 lg:py-8">
<!-- Temporary review delay notice -->
<div class="bg-amber-50 border border-amber-200 rounded-lg p-4 mb-4 flex items-start gap-3">
<svg class="w-5 h-5 text-amber-500 flex-shrink-0 mt-0.5" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M13 16h-1v-4h-1m1-4h.01M21 12a9 9 0 11-18 0 9 9 0 0118 0z"></path>
</svg>
<p class="text-sm text-amber-800">
Contribution reviews are currently delayed. All submissions are being recorded and will be reviewed shortly. Thank you for your patience and continued participation.
</p>
</div>
<Router
{routes}
on:conditionsFailed={hideTooltips}
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/routes/ContributionTypeDetail.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@
}
</style>

<div class="min-h-screen {categoryColors.pageBg} -m-8 p-8">
<div class="{categoryColors.pageBg} rounded-lg p-6 sm:p-8">
<div class="space-y-6 sm:space-y-8">
{#if loading}
<div class="flex justify-center items-center p-8">
Expand Down
4 changes: 2 additions & 2 deletions frontend/src/routes/StewardDashboard.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -77,10 +77,10 @@
}
</script>

<div class="container mx-auto px-4 py-8 min-h-screen {$categoryTheme.bg}" style="margin: -2rem -1rem; padding: 2rem 3rem;">
<div class="container mx-auto px-4 py-8">
<!-- Header -->
<h1 class="text-2xl font-bold text-gray-900 mb-6">Steward Dashboard</h1>

{#if loading}
<div class="flex justify-center items-center p-8">
<div class="animate-spin rounded-full h-10 w-10 border-b-2 border-primary-600"></div>
Expand Down
2 changes: 1 addition & 1 deletion session-mgmt
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
Loading