Skip to content

pullrequests Search Results · language:Dune language:JavaScript language:Java language:TypeScript language:Java language:CSS

Filter by

219M results  (2 s)

219M results

Summary Refactors JiraClient.searchIssues from a do/while(true) loop to a while (all.length total) loop seeded with Infinity, removing the no-constant-condition eslint-disable. Also deletes the dead no-explicit-any ...
ai-authored

Motivation - Prevent users from making reservations when the server-side courts lookup fails in production by showing an explicit emergency fallback view and disabling slot selection and submission. ...
codex

Summary When hasNote=true and persistence is disabled, NoteButton rendered with primary accent colours (border-primary/55 bg-primary/10 text-primary) combined with opacity-50 cursor-not-allowed. This ...

Why After flipping the Railway Backend and Storefront services from repo-source to the prebuilt GHCR images, both crash-looped on first boot. The images pull fine (GHCR creds OK) — these are two distinct ...

Automated by release.sh

Motivation - Prevent users from making reservations when the server-side courts lookup fails in production by showing an explicit emergency fallback view and disabling slot selection and submission. ...
codex

📋 PR 타입 해당하는 타입을 선택해 주세요 (복수 선택 가능) - [x] feature — 새로운 기능 추가 - [ ] fix — 버그 수정 - [ ] style — 코드 스타일 수정 (로직 변경 없음) - [ ] refactor — 리팩토링 - [ ] docs — 문서 수정 - [ ] test — 테스트 코드 - [x] design ...
feature

💡 What: Replaced the chained .split( \n ).filter().map() array operations in SamAgentTranscriptStore.read() with a single-pass while loop using indexOf( \n ) and substring(). 🎯 Why: When reading large ...