Skip to content

Commit 3ab7710

Browse files
fix: Remove nested quotes in inline style (JSX syntax error)
1 parent 29ce5d5 commit 3ab7710

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/taskpane/App.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -951,7 +951,7 @@ const App: React.FC = () => {
951951

952952
{/* Ingestion pending notice */}
953953
{previewData.isPending && (
954-
<div style={{marginBottom: '12px', padding: '10px', background: '#dbeafe', borderRadius: '6px', border: '1px solid '#3b82f6'}}>
954+
<div style={{marginBottom: '12px', padding: '10px', background: '#dbeafe', borderRadius: '6px', border: '1px solid #3b82f6'}}>
955955
<strong style={{color: '#1e3a8a', display: 'block', marginBottom: '4px'}}>⏳ Ingestion In Progress</strong>
956956
<p style={{fontSize: '12px', color: '#1e40af', margin: 0}}>
957957
{previewData.statusMessage || 'Full dataset is being fetched. This usually takes 1-2 minutes. Please check back shortly.'}

0 commit comments

Comments
 (0)