issues Search Results · language:Dune language:HTML language:JavaScript language:JavaScript linked:pr language:JavaScript
Filter by
2.3M results
In frontend/src/pages/Dashboard.tsx, the handleAnalyze function reads aiSettings.batchSize from localStorage but never
includes it in the request body:
body: JSON.stringify({
repoUrl, company, language, ...
In vscode-extension/src/extension.ts line 117 and api.ts line 29:
const result = await reviewFileContent(fileName, fileContent, apiKey);
If the backend is unreachable or hangs, the fetch call in api.ts ...
In frontend/src/components/SettingsModal.tsx lines 199-217, the type= number input for maxTokens has no min/max
attributes and handleSave does not validate. A user can save negative, zero, or absurdly ...
In frontend/src/utils/exportUtils.ts line 132:
const errData = await response.json().catch(() = ({}));
throw new Error(errData.error || Failed to export HTML report. );
If the backend returns a non-JSON ...
In backend/index.js line 751:
setTimeout(() = {
const set = reviewedShas.get(shaKey);
if (set) { set.delete(headSha); ... }
}, 3600000);
This 1-hour setTimeout has no .unref(), keeping the Node.js ...
In backend/utils/complexityAnalyzer.js line 97:
/^\s*(?:async\s+)?\w+\s*\([^)]*\)\s*\{/g.test(trimmed)
A regex with the g flag retains lastIndex across .test() calls. On alternating calls for different ...
In backend/index.js line 166, the CSRF token cookie is set without the Secure flag:
res.setHeader( Set-Cookie , [sessionCookie, `${CSRF_COOKIE_NAME}=${csrfToken}; HttpOnly=false; SameSite=Strict; Path=/`]); ...
In backend/index.js line 194, onShutdown() calls closeDatabase() without await:
function onShutdown() { cleanupTempRepos(); cleanupTimers(); closeDatabase(); process.exit(0); }
closeDatabase() is async ...
Summary
The multiply function in src/math.js should handle floating point numbers correctly and return a result rounded to a
reasonable precision.
Acceptance criteria
- multiply(0.1, 0.2) returns ...
claude
Summary
Add edge case and boundary tests to the existing math module.
Acceptance criteria
- Add tests for: add(0, 0), add(-1, -1), multiply(0, 5), multiply(-2, 3)
- Add a divide(a, b) function to ...
claude

Learn how you can use GitHub Issues to plan and track your work.
Save views for sprints, backlogs, teams, or releases. Rank, sort, and filter issues to suit the occasion. The possibilities are endless.Learn more about GitHub IssuesProTip! Restrict your search to the title by using the in:title qualifier.