Skip to content

Commit

Permalink
feat(qwik-pod): Replace deprecations (#700)
Browse files Browse the repository at this point in the history
  • Loading branch information
SDaian authored Dec 20, 2022
1 parent d8e872c commit 369e247
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions starters/qwik-graphql-tailwind/src/root.tsx
Original file line number Diff line number Diff line change
@@ -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';
Expand All @@ -12,7 +12,7 @@ export default component$(() => {
* Dont remove the `<head>` and `<body>` elements.
*/
return (
<QwikCity>
<QwikCityProvider>
<head>
<meta charSet="utf-8" />
<RouterHead />
Expand All @@ -21,6 +21,6 @@ export default component$(() => {
<RouterOutlet />
<ServiceWorkerRegister />
</body>
</QwikCity>
</QwikCityProvider>
);
});

0 comments on commit 369e247

Please sign in to comment.