[bugfix] Remove placeholder IMAGE widget to restore previous functionality (#5349)

* Remove IMAGE widget

* Remove IMAGE widget test expectations
This commit is contained in:
Benjamin Lu
2025-09-04 10:33:02 -07:00
committed by GitHub
parent c6fc8e6f0f
commit 969c8e6325
6 changed files with 0 additions and 60 deletions

View File

@@ -66,11 +66,6 @@ describe('useWidgetRenderer', () => {
expect(getWidgetComponent('COLOR')).toBe(WidgetType.COLOR)
})
it('should map image types to IMAGE widget', () => {
expect(getWidgetComponent('image')).toBe(WidgetType.IMAGE)
expect(getWidgetComponent('IMAGE')).toBe(WidgetType.IMAGE)
})
it('should map file types to FILEUPLOAD widget', () => {
expect(getWidgetComponent('file')).toBe(WidgetType.FILEUPLOAD)
expect(getWidgetComponent('FILEUPLOAD')).toBe(WidgetType.FILEUPLOAD)