Skip to content
Draft
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
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,11 @@
return current;
}
const override = CLOUD_STORAGE_OVERRIDE.storage[element.prefix];
if (override && !override.hide) {
console.log({ prefix: element.prefix, override });

Check warning on line 149 in client/src/features/cloudStorage/projectCloudStorage.utils.ts

View workflow job for this annotation

GitHub Actions / test-client

Unexpected console statement
if (override /* && !override.hide*/) {
if (override.hide) {
return current;
}
current.push({
...element,
name: override.name ?? element.name,
Expand Down Expand Up @@ -241,7 +245,8 @@
if (!targetSchema) return;
const currentSchema = schema.find((s) => s.prefix === targetSchema);
const override = CLOUD_STORAGE_OVERRIDE.storage[targetSchema];
if (currentSchema && override && !override.hide) {
console.log({ targetSchema, override });

Check warning on line 248 in client/src/features/cloudStorage/projectCloudStorage.utils.ts

View workflow job for this annotation

GitHub Actions / test-client

Unexpected console statement
if (currentSchema && override /*&& !override.hide*/) {
return {
...currentSchema,
name: override.name ?? currentSchema.name,
Expand Down
Loading