-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Release v1.1.0
#33
Release v1.1.0
#33
Conversation
feat: ユーザー名を検索可能にする
TODOコメントは見つかりませんでした。 |
Deploying dev-recap with Cloudflare Pages
|
@github-actions approve me |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Copilot reviewed 8 out of 22 changed files in this pull request and generated 1 comment.
Files not reviewed (14)
- app/recap/page.tsx: Evaluated as low risk
- app/recap/components/grass.tsx: Evaluated as low risk
- app/recap/components/header/header.tsx: Evaluated as low risk
- app/recap/components/overview.tsx: Evaluated as low risk
- app/recap/fetchGitHubStats.ts: Evaluated as low risk
- app/not-found.tsx: Evaluated as low risk
- app/page.tsx: Evaluated as low risk
- app/recap/components/header/breadcrumbs.tsx: Evaluated as low risk
- lib/auth.ts: Evaluated as low risk
- middleware.ts: Evaluated as low risk
- app/recap/components/action.ts: Evaluated as low risk
- app/recap/[user]/error.tsx: Evaluated as low risk
- app/recap/components/auth-components.tsx: Evaluated as low risk
- components/ui/input.tsx: Evaluated as low risk
export default async function Page({ | ||
params, | ||
}: { | ||
params: Promise<{ user: string }>; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The params
should not be a promise. It should be an object directly passed to the function. Change it to params: { user: string }
.
params: Promise<{ user: string }>; | |
params: { user: string }; |
Copilot is powered by AI, so mistakes are possible. Review output carefully before use.
##含まれるPR