File tree Expand file tree Collapse file tree 2 files changed +1
-4
lines changed
packages/web/src/app/[domain]/repos Expand file tree Collapse file tree 2 files changed +1
-4
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
88## [ Unreleased]
99
1010### Fixed
11- - Fixed repository images not loading when anonymous access is disabled. [ #705 ] ( https://github.com/sourcebot-dev/sourcebot/pull/705 )
11+ - Fixed repository images not loading when anonymous access is disabled. [ #703 ] ( https://github.com/sourcebot-dev/sourcebot/pull/703 )
1212
1313### Changed
1414- Enable browser assisted autofill for username and password.[ #696 ] ( https://github.com/sourcebot-dev/sourcebot/pull/696 )
Original file line number Diff line number Diff line change @@ -22,9 +22,6 @@ interface ReposPageProps {
2222export default async function ReposPage ( props : ReposPageProps ) {
2323 const params = await props . searchParams ;
2424
25- console . log ( 'asdf:' ) ;
26- console . log ( z . coerce . number ( ) . int ( ) . safeParse ( params . page ) . error ) ;
27-
2825 // Parse pagination parameters with defaults
2926 const page = numberSchema . safeParse ( params . page ) . data ?? 1 ;
3027 const pageSize = numberSchema . safeParse ( params . pageSize ) . data ?? 5 ;
You can’t perform that action at this time.
0 commit comments