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:
committed by
pullfrog[bot]
parent
fb80343ffd
commit
23df8bf967
@@ -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
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user