Skip to content

Commit 1d10767

Browse files
committed
Open the replica data first.
1 parent 16370d4 commit 1d10767

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/playground/playground.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@ import { ClaudePrototype } from "./claude"
66
import { Replica } from "./replica"
77

88
const MODES = {
9-
claude: { component: ClaudePrototype, label: "claude" },
109
replica: { component: Replica, label: "replica" },
10+
claude: { component: ClaudePrototype, label: "claude" },
1111
} as const
1212

1313
type Mode = keyof typeof MODES
1414

1515
const App = () => {
16-
const [activeComponent, setActiveComponent] = useState<Mode>("claude")
16+
const [activeComponent, setActiveComponent] = useState<Mode>("replica")
1717
const ModeComponent = MODES[activeComponent].component
1818

1919
return (

0 commit comments

Comments
 (0)