Skip to content

Commit 7276ed6

Browse files
authored
fix: build.full fails because of TS confusion (#7487)
1 parent 6273458 commit 7276ed6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/docs/src/repl/repl-output-modules.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,8 @@ export const ReplOutputModules = component$(({ outputs, headerText }: ReplOutput
5555
observerRootId={FILE_MODULE_DIV_ID}
5656
/>
5757
{o.shorten && (
58-
<button onClick$={() => (o.shorten.value = !o.shorten.value)}>
59-
{o.shorten.value ? 'Truncated - show more' : 'Show less'}
58+
<button onClick$={() => (o.shorten!.value = !o.shorten!.value)}>
59+
{o.shorten!.value ? 'Truncated - show more' : 'Show less'}
6060
</button>
6161
)}
6262
</div>

0 commit comments

Comments
 (0)