Skip to content

Commit e91d59d

Browse files
fix
1 parent 38e9815 commit e91d59d

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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)

packages/web/src/app/[domain]/repos/page.tsx

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,6 @@ interface ReposPageProps {
2222
export 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;

0 commit comments

Comments
 (0)