Update prisma fix landing.

This commit is contained in:
Bradley Shellnut 2023-09-12 10:56:58 -07:00
parent 3d37c62392
commit 2781774758
4 changed files with 14 additions and 16 deletions

View file

@ -73,7 +73,7 @@
"@lucia-auth/adapter-prisma": "^3.0.1",
"@lukeed/uuid": "^2.0.1",
"@melt-ui/svelte": "^0.37.6",
"@prisma/client": "5.1.1",
"@prisma/client": "5.2.0",
"@types/feather-icons": "^4.29.1",
"bits-ui": "^0.0.27",
"class-variance-authority": "^0.6.1",

View file

@ -22,7 +22,7 @@ dependencies:
version: 2.0.0(lucia@2.4.2)
'@lucia-auth/adapter-prisma':
specifier: ^3.0.1
version: 3.0.1(@prisma/client@5.1.1)(lucia@2.4.2)
version: 3.0.1(@prisma/client@5.2.0)(lucia@2.4.2)
'@lukeed/uuid':
specifier: ^2.0.1
version: 2.0.1
@ -30,8 +30,8 @@ dependencies:
specifier: ^0.37.6
version: 0.37.6(svelte@4.2.0)
'@prisma/client':
specifier: 5.1.1
version: 5.1.1(prisma@5.2.0)
specifier: 5.2.0
version: 5.2.0(prisma@5.2.0)
'@types/feather-icons':
specifier: ^4.29.1
version: 4.29.1
@ -1160,13 +1160,13 @@ packages:
lucia: 2.4.2
dev: false
/@lucia-auth/adapter-prisma@3.0.1(@prisma/client@5.1.1)(lucia@2.4.2):
/@lucia-auth/adapter-prisma@3.0.1(@prisma/client@5.2.0)(lucia@2.4.2):
resolution: {integrity: sha512-JZNl+721M5ApjtNiH+WUYstiC8cffcI/Y9IzKsa0uUhQMIHl2ObCrgO0R3fgHnjWHBjhQoK36g/r/iSJIDppBA==}
peerDependencies:
'@prisma/client': ^4.2.0 || ^5.0.0
lucia: ^2.0.0
dependencies:
'@prisma/client': 5.1.1(prisma@5.2.0)
'@prisma/client': 5.2.0(prisma@5.2.0)
lucia: 2.4.2
dev: false
@ -1265,8 +1265,8 @@ packages:
/@polka/url@1.0.0-next.21:
resolution: {integrity: sha512-a5Sab1C4/icpTZVzZc5Ghpz88yQtGOyNqYXcZgOssB2uuAr+wF/MvN6bgtW32q7HHrvBki+BsZ0OuNv6EV3K9g==}
/@prisma/client@5.1.1(prisma@5.2.0):
resolution: {integrity: sha512-fxcCeK5pMQGcgCqCrWsi+I2rpIbk0rAhdrN+ke7f34tIrgPwA68ensrpin+9+fZvuV2OtzHmuipwduSY6HswdA==}
/@prisma/client@5.2.0(prisma@5.2.0):
resolution: {integrity: sha512-AiTjJwR4J5Rh6Z/9ZKrBBLel3/5DzUNntMohOy7yObVnVoTNVFi2kvpLZlFuKO50d7yDspOtW6XBpiAd0BVXbQ==}
engines: {node: '>=16.13'}
requiresBuild: true
peerDependencies:
@ -1275,12 +1275,12 @@ packages:
prisma:
optional: true
dependencies:
'@prisma/engines-version': 5.1.1-1.6a3747c37ff169c90047725a05a6ef02e32ac97e
'@prisma/engines-version': 5.2.0-25.2804dc98259d2ea960602aca6b8e7fdc03c1758f
prisma: 5.2.0
dev: false
/@prisma/engines-version@5.1.1-1.6a3747c37ff169c90047725a05a6ef02e32ac97e:
resolution: {integrity: sha512-owZqbY/wucbr65bXJ/ljrHPgQU5xXTSkmcE/JcbqE1kusuAXV/TLN3/exmz21SZ5rJ7WDkyk70J2G/n68iogbQ==}
/@prisma/engines-version@5.2.0-25.2804dc98259d2ea960602aca6b8e7fdc03c1758f:
resolution: {integrity: sha512-jsnKT5JIDIE01lAeCj2ghY9IwxkedhKNvxQeoyLs6dr4ZXynetD0vTy7u6wMJt8vVPv8I5DPy/I4CFaoXAgbtg==}
dev: false
/@prisma/engines@5.2.0:

View file

@ -3,9 +3,7 @@
import type { SearchSchema } from '$lib/zodValidation';
import { boredState } from '$lib/stores/boredState';
import { gameStore } from '$lib/stores/gameSearchStore';
import { ToastType } from '$lib/types';
import { superForm } from 'sveltekit-superforms/client';
import { toast } from '../../toast/toast';
import { Button } from '$components/ui/button';
export let data: SuperValidated<SearchSchema>;

View file

@ -1,7 +1,7 @@
<script lang="ts">
import TextSearch from '$lib/components/search/textSearch/index.svelte';
// import TextSearch from '$lib/components/search/textSearch/index.svelte';
import RandomSearch from '$lib/components/search/random/index.svelte';
import Random from '$lib/components/random/index.svelte';
// import Random from '$lib/components/random/index.svelte';
export let data;
export let formData;
@ -21,7 +21,7 @@
<p>Or pick a random game!</p>
<div class="random-buttons">
<RandomSearch data={data.form} />
<Random />
<!-- <Random /> -->
</div>
</section>
<!-- <TextSearch showButton advancedSearch data={data.form} /> -->