Skip to content
Merged
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
14 changes: 7 additions & 7 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -70,11 +70,11 @@
},
"dependencies": {
"@comapeo/core": "5.1.2",
"@comapeo/default-categories": "1.0.1",
"@comapeo/fallback-smp": "1.0.0",
"@comapeo/ipc": "6.0.1",
"@formatjs/intl": "3.1.8",
"@homebridge/ciao": "1.3.4",
"@mapeo/default-config": "6.0.0",
"@sentry/electron": "7.3.0",
"atomically": "2.1.0",
"debug": "4.4.3",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ export const Route = createFileRoute(
component: RouteComponent,
})

const DEFAULT_CATEGORIES_NAME = `@mapeo/default-config`
const DEFAULT_CATEGORIES_NAME = `@comapeo/default-categories`

const SELECT_AND_IMPORT_CATEGORY_MUTATION_KEY = createGlobalMutationsKey([
'category',
Expand Down
2 changes: 1 addition & 1 deletion src/services/core.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ const DATABASE_MIGRATIONS_DIRECTORY = fileURLToPath(

const DEFAULT_CONFIG_PATH = fileURLToPath(
import.meta.resolve(
'@mapeo/default-config/dist/mapeo-default-config.comapeocat',
'@comapeo/default-categories/dist/comapeo-default-categories.comapeocat',
),
)

Expand Down
10 changes: 5 additions & 5 deletions tests-e2e/app.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -931,7 +931,7 @@ test.describe('project settings', () => {
}),
).toBeVisible()
await expect(
categoriesSetItem.getByText('CoMapeo Default Config'),
categoriesSetItem.getByText('CoMapeo Default Categories'),
).toBeVisible()
await expect(
categoriesSetItem.getByRole('link', {
Expand Down Expand Up @@ -1396,7 +1396,7 @@ test.describe('project settings', () => {
{
await expect(
main.getByRole('heading', {
name: 'CoMapeo Default Config',
name: 'CoMapeo Default Categories',
exact: true,
}),
).toBeVisible()
Expand Down Expand Up @@ -1519,7 +1519,7 @@ test.describe('project settings', () => {
await stubDialog(electronApp, 'showOpenDialog', {
canceled: false,
filePaths: [
createRequire(import.meta.url).resolve('@mapeo/default-config'),
createRequire(import.meta.url).resolve('@comapeo/default-categories'),
],
})

Expand All @@ -1529,7 +1529,7 @@ test.describe('project settings', () => {

await expect(
main.getByRole('heading', {
name: 'CoMapeo Default Config',
name: 'CoMapeo Default Categories',
exact: true,
}),
).toBeVisible()
Expand All @@ -1549,7 +1549,7 @@ test.describe('project settings', () => {
const categoriesSetItem = main.getByRole('listitem').last()

await expect(
categoriesSetItem.getByText('CoMapeo Default Config', {
categoriesSetItem.getByText('CoMapeo Default Categories', {
exact: true,
}),
).toBeVisible()
Expand Down