Merge branch 'staging' into big-nate-bus-1876-dynamic-components-still-error-out

This commit is contained in:
Nate Kelley 2025-09-22 16:17:23 -06:00
commit 0dfc018671
No known key found for this signature in database
GPG Key ID: FD90372AB8D98B4F
3 changed files with 8 additions and 46 deletions

View File

@ -90,14 +90,6 @@ const filters: SegmentedItem<string>[] = [
label: 'All', label: 'All',
value: JSON.stringify({}), value: JSON.stringify({}),
}, },
{
label: 'My collections',
value: JSON.stringify({ owned_by_me: true }),
},
{
label: 'Shared with me',
value: JSON.stringify({ shared_with_me: true }),
},
]; ];
const CollectionFilters: React.FC<{ const CollectionFilters: React.FC<{

View File

@ -46,18 +46,6 @@ const filters: SegmentedItem<string>[] = [
label: 'All ', label: 'All ',
value: JSON.stringify({}), value: JSON.stringify({}),
}, },
{
label: 'My dashboards',
value: JSON.stringify({
only_my_dashboards: true,
}),
},
{
label: 'Shared with me',
value: JSON.stringify({
shared_with_me: true,
}),
},
]; ];
const DashboardFilters: React.FC<{ const DashboardFilters: React.FC<{

View File

@ -1,34 +1,16 @@
{ {
"rewrites": [ "functions": {
{ "apps/web/.output/server/index.mjs": {
"source": "/_assets/:version/:path*", "maxDuration": 30
"destination": "/assets/:path*"
} }
],
"headers": [
{
"source": "/_assets/(.*)",
"headers": [
{
"key": "Cache-Control",
"value": "public, max-age=31536000, immutable"
},
{
"key": "Access-Control-Allow-Origin",
"value": "*"
}
]
}, },
"headers": [
{ {
"source": "/assets/(.*)", "source": "/assets/(.*)",
"headers": [ "headers": [
{ {
"key": "Cache-Control", "key": "Cache-Control",
"value": "public, max-age=31536000, immutable" "value": "public, max-age=5184000, immutable"
},
{
"key": "Access-Control-Allow-Origin",
"value": "*"
} }
] ]
}, },
@ -37,7 +19,7 @@
"headers": [ "headers": [
{ {
"key": "Cache-Control", "key": "Cache-Control",
"value": "public, max-age=31536000, immutable" "value": "public, max-age=5184000, immutable"
} }
] ]
}, },
@ -46,7 +28,7 @@
"headers": [ "headers": [
{ {
"key": "Cache-Control", "key": "Cache-Control",
"value": "public, max-age=31536000, immutable" "value": "public, max-age=5184000, immutable"
} }
] ]
}, },
@ -55,7 +37,7 @@
"headers": [ "headers": [
{ {
"key": "Cache-Control", "key": "Cache-Control",
"value": "public, max-age=31536000, immutable" "value": "public, max-age=5184000, immutable"
} }
] ]
}, },