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
2 changes: 1 addition & 1 deletion packages/cli/src/utils/app-generator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -622,7 +622,7 @@ import {
} from '@object-ui/components';

const DynamicIcon = ({ name, className }) => {
// @ts-ignore
// @ts-expect-error - Dynamic icon lookup by string key
const Icon = LucideIcons[name];
if (!Icon) return null;
return <Icon className={className} />;
Expand Down
2 changes: 1 addition & 1 deletion packages/plugin-form/src/ObjectForm.msw.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { setupServer } from 'msw/node';
import { http, HttpResponse } from 'msw';
import { registerAllFields } from '@object-ui/fields';
import React from 'react';
// @ts-ignore - Import from examples
// @ts-expect-error - Import from examples
import { ContactObject } from '../../../examples/crm/src/objects/contact.object';

// Register widget renderers
Expand Down
2 changes: 1 addition & 1 deletion packages/plugin-grid/src/ObjectGrid.msw.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { setupServer } from 'msw/node';
import { http, HttpResponse } from 'msw';
import { registerAllFields } from '@object-ui/fields';
import React from 'react';
// @ts-ignore - Import from examples
// @ts-expect-error - Import from examples
import { ContactObject } from '../../../examples/crm/src/objects/contact.object';

registerAllFields();
Expand Down
2 changes: 1 addition & 1 deletion packages/plugin-timeline/src/ObjectTimeline.msw.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ describe('ObjectTimeline with MSW', () => {

render(
<ObjectTimeline
// @ts-ignore
// @ts-expect-error - Mock schema type mismatch with TimelineSchema
schema={schema}
dataSource={adapter}
/>
Expand Down
Loading