diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index d5b5be5..9e06bbf 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -8,17 +8,20 @@ jobs:
steps:
- name: Checkout repository
uses: actions/checkout@master
-
+
- name: Install Node v14
uses: actions/setup-node@v2
with:
node-version: '14'
-
+
- name: Install dependencies
run: npm install
+ - name: Generate prisma client
+ run: npx prisma generate
+
- name: Run Linter
run: npm run lint
- name: Run typescript pretty check
- run: npm run tspretty
\ No newline at end of file
+ run: npm run tspretty
diff --git a/components/user/DropDown.tsx b/components/user/DropDown.tsx
index d666f95..2312e76 100644
--- a/components/user/DropDown.tsx
+++ b/components/user/DropDown.tsx
@@ -3,11 +3,6 @@ import Link from 'next/link';
import { signOut } from 'next-auth/react';
import React, { Fragment } from 'react';
import styles from 'styles/navbar.module.scss';
-import { ApiUser } from 'typings/typings';
-
-interface props {
- user: ApiUser;
-}
function AccountSettingsIcon() {
return (
@@ -69,7 +64,7 @@ function ProfileIcon() {
// },
// ];
-export default function UserDropDown({ user }: props) {
+export default function UserDropDown({ user }) {
return (