make waitlist code field required (#250)

* make waitlist code field required

all existing rows have been backfilled with unique codes via the consolidation script.

Co-authored-by: Cursor <cursoragent@cursor.com>

* fix lint errors

Co-authored-by: Cursor <cursoragent@cursor.com>

---------

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
Colin McDonnell
2026-02-10 06:31:31 +00:00
committed by pullfrog[bot]
parent fb80343ffd
commit 23df8bf967
2 changed files with 6 additions and 2 deletions
+3 -1
View File
@@ -144230,7 +144230,9 @@ var ThinkingTimer = class {
}
markToolCall() {
const now = Date.now();
log.debug(`\xBB thinking timer: markToolCall at ${now}, lastToolResult=${this.lastToolResultTimestamp}`);
log.debug(
`\xBB thinking timer: markToolCall at ${now}, lastToolResult=${this.lastToolResultTimestamp}`
);
if (this.lastToolResultTimestamp === null) return;
const elapsed = now - this.lastToolResultTimestamp;
if (elapsed < THINKING_THRESHOLD) return;
+3 -1
View File
@@ -39,7 +39,9 @@ export class ThinkingTimer {
markToolCall(): void {
const now = Date.now();
log.debug(`» thinking timer: markToolCall at ${now}, lastToolResult=${this.lastToolResultTimestamp}`);
log.debug(
`» thinking timer: markToolCall at ${now}, lastToolResult=${this.lastToolResultTimestamp}`
);
if (this.lastToolResultTimestamp === null) return;
const elapsed = now - this.lastToolResultTimestamp;
if (elapsed < THINKING_THRESHOLD) return;