From 6de358bfa5178d018be058531ee67a44bac69df5 Mon Sep 17 00:00:00 2001 From: Philippe Serhal Date: Sat, 25 Apr 2026 15:21:42 -0400 Subject: [PATCH 1/2] feat: make test changes from a fork --- app/app.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/app.vue b/app/app.vue index 34fc1d5c01..7ae2054c74 100644 --- a/app/app.vue +++ b/app/app.vue @@ -38,7 +38,7 @@ useHead({ 'data-kbd-hints': () => showKbdHints.value, }, titleTemplate: titleChunk => { - return titleChunk ? titleChunk : 'npmx - Better npm Package Browser' + return titleChunk ? titleChunk : 'hello from a fork' }, meta: [{ name: 'color-scheme', content: colorScheme }], }) @@ -79,11 +79,11 @@ onKeyDown( ) onKeyDown( - '?', + 'f', e => { if (!keyboardShortcuts.value || isEditableElement(e.target)) return e.preventDefault() - showKbdHints.value = true + window.alert("hello from a fork") }, { dedupe: true }, ) From b0c844437f2957f33b54fd4f4498e7a205abdf0e Mon Sep 17 00:00:00 2001 From: "autofix-ci[bot]" <114827586+autofix-ci[bot]@users.noreply.github.com> Date: Sat, 25 Apr 2026 19:24:14 +0000 Subject: [PATCH 2/2] [autofix.ci] apply automated fixes --- app/app.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/app.vue b/app/app.vue index 7ae2054c74..983e6669c4 100644 --- a/app/app.vue +++ b/app/app.vue @@ -83,7 +83,7 @@ onKeyDown( e => { if (!keyboardShortcuts.value || isEditableElement(e.target)) return e.preventDefault() - window.alert("hello from a fork") + window.alert('hello from a fork') }, { dedupe: true }, )