Skip to content
This repository has been archived by the owner on Mar 26, 2024. It is now read-only.

perf(logging): remove logging when URL isn't a collection #1144

Merged
merged 1 commit into from
Jan 16, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion src/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,6 @@ export function collectionFilterValidation(filters: any, properties: string) {
export function getCollectionUrlSlug(url: string): string | null {
const match = validCollectionUrlRegExp.exec(url);
if (!match) {
console.log(`${url} is not a valid collection`);
return null;
}

Expand Down
Loading