Skip to content

Commit 4da3df5

Browse files
committed
fix(file-view): correct the data-table stylesheet path
data-table.tsx moved one directory deeper during the migration but kept its './document-table.css' import. The stylesheet is shared at the components/ level — both rich-markdown-editor importers already use '../document-table.css' — so this was the lone stale path. TypeScript does not resolve bare CSS imports, so only the production build caught it.
1 parent c013365 commit 4da3df5

2 files changed

Lines changed: 22 additions & 22 deletions

File tree

apps/sim/components/resources/file-view/components/data-table/data-table.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
import { forwardRef, memo, useCallback, useImperativeHandle, useRef, useState } from 'react'
44
import { cn } from '@sim/emcn'
5-
import './document-table.css'
5+
import '../document-table.css'
66

77
interface EditConfig {
88
onCellChange: (row: number, col: number, value: string) => void

0 commit comments

Comments
 (0)