Skip to content

Commit 61d49b7

Browse files
spe1020spe1020claude
authored
fix(souschef): actually remove ⌘V hint from input toolbar (#400)
PR #399 was supposed to remove the "⌘V works for URLs, text, and images." hint from the Sous Chef input toolbar. The squash-merge applied half the diff — the `handlePaste` comment update landed on main, but the toolbar hunk (the `<span>` removal + `justify-between` → `justify-end` swap) was silently dropped, almost certainly because of merge-base confusion after #397's earlier squash made the file history ambiguous to GitHub's merge algorithm. This branches fresh from current main and applies just the toolbar change to avoid any repeat. After this, the toolbar contains only the "Upload image" button, right-aligned. Co-authored-by: spe1020 <sethsager@Seths-MacBook-Air.local> Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent 806043d commit 61d49b7

2 files changed

Lines changed: 2 additions & 3 deletions

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "zap.cooking",
33
"license": "MIT",
4-
"version": "4.2.446",
4+
"version": "4.2.447",
55
"private": true,
66
"scripts": {
77
"dev": "vite dev",

src/routes/souschef/+page.svelte

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -719,8 +719,7 @@
719719
class="w-full bg-transparent border-0 p-4 resize-none focus:outline-none focus:ring-0 text-base"
720720
disabled={isExtracting}
721721
/>
722-
<div class="flex items-center justify-between gap-3 px-4 py-2 border-t" style="border-color: var(--color-input-border)">
723-
<span class="text-xs text-caption">⌘V works for URLs, text, and images.</span>
722+
<div class="flex items-center justify-end gap-3 px-4 py-2 border-t" style="border-color: var(--color-input-border)">
724723
<button
725724
type="button"
726725
class="inline-flex items-center gap-1.5 text-sm font-medium text-caption hover:text-primary transition-colors"

0 commit comments

Comments
 (0)