Skip to content

Commit 3939672

Browse files
committed
fix: close unclosed isCreator conditional in ExpiryCountdownBanner
Missing closing div/paren left the JSX malformed, which was fatal enough to abort tsc's semantic checking for the whole project before any other file got analyzed. Discovered while typechecking after rebasing this branch onto main.
1 parent 2dd58cb commit 3939672

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/components/ExpiryCountdownBanner.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,8 @@ export default function ExpiryCountdownBanner({
180180
</button>
181181
</div>
182182
)}
183-
</div>
183+
</div>
184+
)}
184185

185186
<button
186187
onClick={() => setShow(false)}

0 commit comments

Comments
 (0)