Skip to content

Commit

Permalink
hotfix: fix Layouter children splice (#272)
Browse files Browse the repository at this point in the history
  • Loading branch information
madil4 authored Dec 9, 2023
1 parent 3faac2d commit f3a337e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Layouter/Layouter.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ export function Layouter(props: LayouterProps) {
class="flex flex-col w-full md:w-1/2 min-w-[350px] min-h-[200px]"
ref={leftView!}
>
{c.slice(0, 2)}
{c.slice(0, 3)}
</div>
<div
class="bg-primary w-[2px] cursor-ew-resize"
Expand Down

0 comments on commit f3a337e

Please sign in to comment.