Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 8 additions & 5 deletions apps/web/src/routes/_chat.settings.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -279,14 +279,17 @@ function SettingsRouteView() {
</span>
</label>

<div className="flex items-center justify-between gap-2 text-xs text-muted-foreground">
<p>
Binary source:{" "}
<span className="font-medium text-foreground">{codexBinaryPath || "PATH"}</span>
</p>
<div className="flex flex-col gap-3 text-xs text-muted-foreground sm:flex-row sm:items-start sm:justify-between">
<div className="min-w-0 flex-1">
<p>Binary source</p>
<p className="mt-1 break-all font-mono text-[11px] text-foreground">
{codexBinaryPath || "PATH"}
</p>
</div>
<Button
size="xs"
variant="outline"
className="self-start"
onClick={() =>
updateSettings({
codexBinaryPath: defaults.codexBinaryPath,
Expand Down