Make it 3$ for EVERYONE, not just old users - #130
Open
itzmetanjim wants to merge 1 commit into
Open
Conversation
There was a problem hiding this comment.
Pull request overview
Updates the application’s default daily spending limit behavior so that UI display, middleware enforcement, OpenRouter key provisioning, and the DB default/migration all use the same fallback limit.
Changes:
- Set default spending limit fallback to $3 across UI (
Header), request limiting middleware, and OpenRouter key provisioning. - Change
users.spending_limit_usddatabase default to 3 and add a migration to update existing rows that are 4 → 3. - Add corresponding Drizzle migration metadata (snapshot + journal entry).
Reviewed changes
Copilot reviewed 7 out of 7 changed files in this pull request and generated 2 comments.
Show a summary per file
| File | Description |
|---|---|
| src/views/components/Header.tsx | Aligns displayed limit fallback with the server/DB default (now “3”). |
| src/middleware/limits.ts | Enforces the default limit fallback as “3” when user has no explicit limit. |
| src/lib/openrouter-keys.ts | Provisions/syncs OpenRouter key limit using fallback “3”. |
| src/db/schema.ts | Changes spendingLimitUsd column default from “4” to “3”. |
| drizzle/meta/0016_snapshot.json | Adds schema snapshot reflecting the new default. |
| drizzle/meta/_journal.json | Records the new migration entry. |
| drizzle/0016_normal_basilisk.sql | Applies DB default change + updates existing users from 4 to 3. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Right now, because of some bug, old users have 3$ limit but new users have a 4$ limit. This commit fixes that and makes everyone have a 3$ limit.