From ad3f412dc8cbbce31fc4f689fa0a2f2872e0795b Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Yusuf=20Akg=C3=BCl?= <s86116@bht-berlin.de>
Date: Thu, 25 May 2023 06:48:14 +0200
Subject: [PATCH] refactor last merge

---
 app/(content)/(user)/[userid]/page.tsx              |  8 ++++++--
 prisma/migrations/20230521165937_init/migration.sql | 10 ----------
 2 files changed, 6 insertions(+), 12 deletions(-)
 delete mode 100644 prisma/migrations/20230521165937_init/migration.sql

diff --git a/app/(content)/(user)/[userid]/page.tsx b/app/(content)/(user)/[userid]/page.tsx
index 7c9aa6b..7e8267a 100644
--- a/app/(content)/(user)/[userid]/page.tsx
+++ b/app/(content)/(user)/[userid]/page.tsx
@@ -1,8 +1,12 @@
-import { ClerkProvider, UserButton, UserProfile } from "@clerk/nextjs";
+import { UserProfile } from "@clerk/nextjs";
 import { dark } from '@clerk/themes';
 
 export default function User({ params }: { params: { userid: string } }) {
     return (
-            <UserProfile appearance={{baseTheme:dark}}/>
+        <>
+            <h1>User Profile Page WIP</h1>
+            <p>Unique Page Params: {params.userid}</p>
+            <UserProfile appearance={{ baseTheme: dark }} />
+        </>
     )
 }
\ No newline at end of file
diff --git a/prisma/migrations/20230521165937_init/migration.sql b/prisma/migrations/20230521165937_init/migration.sql
deleted file mode 100644
index ec720e2..0000000
--- a/prisma/migrations/20230521165937_init/migration.sql
+++ /dev/null
@@ -1,10 +0,0 @@
--- CreateTable
-CREATE TABLE "Message" (
-    "id" INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT,
-    "author" TEXT,
-    "gameId" TEXT,
-    "title" TEXT,
-    "content" TEXT NOT NULL,
-    "sentAt" DATETIME DEFAULT CURRENT_TIMESTAMP,
-    "updatedAt" DATETIME
-);
-- 
GitLab