-
Notifications
You must be signed in to change notification settings - Fork 2
Fix TypeScript build errors in copilot/continue-typescript-migration branch #1158
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
Changes from all commits
80ddb19
15316bd
2966d70
70fcbca
61b4493
eb4fa56
b6846d2
47a27a4
ffed389
d12b904
e24dfb7
d01140a
cf0ceaf
fca518d
06863ad
4c2f8b3
617a033
3b34922
1e7e071
f0be331
99f570b
02dcee9
46601aa
bbdda56
ac4f8da
1a5ea78
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
| Original file line number | Diff line number | Diff line change | ||||||
|---|---|---|---|---|---|---|---|---|
|
|
@@ -202,9 +202,8 @@ const DAKStatusBox: React.FC<DAKStatusBoxProps> = ({ repository, selectedBranch, | |||||||
| <div className="status-section"> | ||||||||
| <h4>🔄 Recent Commits</h4> | ||||||||
| <CommitsSlider | ||||||||
| commits={repositoryStats.recentCommits} | ||||||||
| repository={repository} | ||||||||
| branch={branch} | ||||||||
| selectedBranch={branch} | ||||||||
|
||||||||
| selectedBranch={branch} | |
| selectedBranch={branch} | |
| commits={repositoryStats.recentCommits} |
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 method call 'isAuth()' appears incorrect. Based on the context and common patterns, this should likely be 'isAuthenticated' (a property) or 'isAuthenticated()' (a method). Verify the correct API for githubService authentication checking.