Skip to content
Closed
Show file tree
Hide file tree
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 @@ -7,6 +7,5 @@ export * from './views/settings';
export { default as Header } from './views/header.svelte';
export { default as Breadcrumbs } from './views/breadcrumbs.svelte';

export { default as Usage } from './views/usage/view.svelte';
export { default as CreateEntity } from './views/create.svelte';
export { default as FailedModal } from './views/failedModal.svelte';

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -204,15 +204,6 @@
disabled: page.url.pathname.endsWith('indexes'),
group: 'tables'
},
{
label: 'Go to usage',
keys: ['g', 'u'],
callback() {
goto(withPath(basePath, '/usage'));
},
disabled: page.url.pathname.endsWith('usage'),
group: 'tables'
},
{
label: 'Go to settings',
keys: ['g', 's'],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,6 @@
title: 'Indexes',

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P1 Stale Usage Command Route

The table Usage tab and page are removed here, but the table layout still registers a command-palette action that navigates to withPath(basePath, '/usage'). A user can still trigger that action from any table page and land on the now-deleted route, showing a client-side 404.

Context Used: AGENTS.md (source)

Prompt To Fix With AI
This is a comment left during a code review.
Path: src/routes/(console)/project-[region]-[project]/databases/database-[database]/table-[table]/header.svelte
Line: 32

Comment:
**Stale Usage Command Route**

The table Usage tab and page are removed here, but the table layout still registers a command-palette action that navigates to `withPath(basePath, '/usage')`. A user can still trigger that action from any table page and land on the now-deleted route, showing a client-side 404.

**Context Used:** AGENTS.md ([source](https://app.greptile.com/appwrite/github/appwrite/console/-/custom-context?memory=f4227d43-a98a-4882-876a-cad1bc006878))

How can I resolve this? If you propose a fix, please make it concise.

Fix in Claude Code Fix in Codex

event: 'indexes'
},
{
href: `${path}/usage`,
title: 'Usage',
event: 'usage',
hasChildren: true
},
{
href: `${path}/settings`,
title: 'Settings',
Expand Down

This file was deleted.

This file was deleted.

Loading