Skip to content

Commit 8833ce4

Browse files
committed
contrib(raak): 4 files
- .github/workflows/deploy.yml - frontend/src/modules/common/blocknote/type-to-keys.ts - frontend/src/query/basic/index.ts - frontend/src/routes/organization-routes.tsx
1 parent 45b645c commit 8833ce4

File tree

4 files changed

+3
-4
lines changed

4 files changed

+3
-4
lines changed

.github/workflows/deploy.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@
55
# Triggered on pushes to main (prod) or manually for other environments
66
# =============================================================================
77

8-
export const stxRequestSchema = z
9-
108
permissions:
119
contents: read
1210

frontend/src/modules/common/blocknote/type-to-keys.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ export const baseBlocknoteTypeToKeys = {
1212
codeBlock: ['code_block'],
1313
bulletListItem: ['bullet_list'],
1414
numberedListItem: ['numbered_list'],
15-
checkListItem: ['checklistItem'],
1615
checklistItem: ['checklistItem'],
16+
checkListItem: ['checklistItem'],
1717
file: ['file'],
1818
image: ['image'],
1919
video: ['video'],

frontend/src/query/basic/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ export {
77
hasEntityQueryKeys,
88
registerEntityQueryKeys,
99
} from './entity-query-registry';
10+
export { fetchSlugCacheId } from './fetch-slug-cache-id';
1011
export { findEntityInListCache } from './find-in-list-cache';
1112
export { flattenInfiniteData } from './flatten';
1213
export {

frontend/src/routes/organization-routes.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import {
1111
organizationQueryKeys,
1212
organizationQueryOptions,
1313
} from '~/modules/organization/query';
14-
import { fetchSlugCacheId } from '~/query/fetch-slug-cache-id';
14+
import { fetchSlugCacheId } from '~/query/basic';
1515
import { queryClient } from '~/query/query-client';
1616
import { AppLayoutRoute } from '~/routes/base-routes';
1717
import { useToastStore } from '~/store/toast';

0 commit comments

Comments
 (0)