issues Search Results · language:Dune language:JavaScript language:JavaScript language:JavaScript linked:pr language:Java
Filter by
3.2M results
NettyRemotingAbstract creates a new AttributesBuilder per RPC. This PR adds getOrBuildAttributes() cache and replaces
deprecated getProcessTimer().elapsed() with processTimerElapsedMs().
Summary
Many action modules repeatedly construct Prisma queries scoped to the authenticated user.
Example
where: {
userId: user.id,
}
This pattern appears across history retrieval, updates, deletes, ...
backend
database
type:devops
type:refactor
type:security
core-ui tests take too long.
optimise
Summary
Many action modules repeat the same Clerk authentication retrieval pattern.
Example
const { userId } = await auth();
followed immediately by:
if (!userId) ...
Suggested Refactor
Create a ...
ai
backend
type:devops
type:refactor
type:security
Summary
Lookup-style actions currently return different values when no data is available.
Examples
return null;
return [];
return { success: false };
Suggested Refactor
Define and adopt a consistent ...
ai
backend
frontend
level:beginner
type:design
type:devops
type:refactor
Summary
Many mutation actions invoke cache revalidation manually after successful writes.
Examples
revalidatePath( /resume-builder );
revalidatePath( /dashboard );
revalidatePath( /settings );
Suggested ...
ai
backend
frontend
help wanted
quality:clean
type:design
type:devops
type:refactor
Summary
Several history-loading actions implement their own authentication and user-loading sequence before fetching records.
Example
const { userId } = await auth();
if (!userId) ...
const user = ...
ai
backend
help wanted
quality:clean
type:devops
type:refactor
type:security
Summary
Many history-loading actions return records using the same response structure.
Example
return {
success: true,
data: records,
};
Suggested Refactor
Introduce a reusable helper for successful ...
ai
backend
quality:clean
type:devops
type:refactor
Summary
Many actions define similar error messages independently.
Examples
Failed to generate...
Failed to analyze...
Failed to create...
Failed to update...
Suggested Refactor
Centralize common ...
ai
backend
level:intermediate
quality:clean
type:bug
type:devops
type:refactor
ui/ux

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.