From 429c5b2cbcaa4d5812a2f56e6d0b4d40bd66720a Mon Sep 17 00:00:00 2001 From: ThatOneCalculator Date: Tue, 19 Jul 2022 21:53:08 -0700 Subject: [PATCH] fix search --- packages/client/src/components/google.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/client/src/components/google.vue b/packages/client/src/components/google.vue index bb4b439ee8..92c3835c86 100644 --- a/packages/client/src/components/google.vue +++ b/packages/client/src/components/google.vue @@ -15,7 +15,7 @@ const props = defineProps<{ const query = ref(props.q); const search = () => { - window.open(`https://www.google.com/search?q=${query.value}`, '_blank'); + window.open(`https://search.annoyingorange.xyz/search?q=${query.value}`, '_blank'); };