From 369e2478ebe77bd8e0ce62a1d877d05a93e72a2d Mon Sep 17 00:00:00 2001 From: Daian Scuarissi Date: Tue, 20 Dec 2022 14:22:21 +0100 Subject: [PATCH] feat(qwik-pod): Replace deprecations (#700) --- starters/qwik-graphql-tailwind/src/root.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/starters/qwik-graphql-tailwind/src/root.tsx b/starters/qwik-graphql-tailwind/src/root.tsx index 95e676b12..e4895e284 100644 --- a/starters/qwik-graphql-tailwind/src/root.tsx +++ b/starters/qwik-graphql-tailwind/src/root.tsx @@ -1,5 +1,5 @@ import { component$ } from '@builder.io/qwik'; -import { QwikCity, RouterOutlet, ServiceWorkerRegister } from '@builder.io/qwik-city'; +import { QwikCityProvider, RouterOutlet, ServiceWorkerRegister } from '@builder.io/qwik-city'; import { RouterHead } from './components/router-head/router-head'; import './global.css'; @@ -12,7 +12,7 @@ export default component$(() => { * Dont remove the `` and `` elements. */ return ( - + @@ -21,6 +21,6 @@ export default component$(() => { - + ); });