diff --git a/apps/api/schema.gql b/apps/api/schema.gql index f5c4b9e..61a61d9 100644 --- a/apps/api/schema.gql +++ b/apps/api/schema.gql @@ -1,8 +1,6 @@ -""" -Auth0 user info -""" +"""Auth0 user info""" type AuthInfo { - sub: String + sub: String } """ @@ -16,23 +14,21 @@ A date-time string at UTC, such as 2007-12-03T10:15:30Z, compliant with the `dat scalar DateTime type Query { - allUsers: [User!]! + allUsers: [User!]! - """ - Auth0 context info - """ - authInfo: AuthInfo + """Auth0 context info""" + authInfo: AuthInfo } type Task { - description: String! - id: ID! - title: String! + description: String! + id: ID! + title: String! } type User { - email: String! - id: ID! - name: String! - postedTasks: [Task!]! -} + email: String! + id: ID! + name: String! + postedTasks: [Task!]! +} \ No newline at end of file diff --git a/apps/web/components/atoms/navbar/navbar.tsx b/apps/web/components/atoms/navbar/navbar.tsx index e26f12c..b41e1a3 100644 --- a/apps/web/components/atoms/navbar/navbar.tsx +++ b/apps/web/components/atoms/navbar/navbar.tsx @@ -7,7 +7,7 @@ type NavbarProps = { export const Navbar = ({ children }: NavbarProps) => { return ( ); }; diff --git a/apps/web/components/molecules/challengeItem/challengeItem.tsx b/apps/web/components/molecules/challengeItem/challengeItem.tsx index 95309ad..c6330c0 100644 --- a/apps/web/components/molecules/challengeItem/challengeItem.tsx +++ b/apps/web/components/molecules/challengeItem/challengeItem.tsx @@ -19,13 +19,13 @@ export const ChallengeItem = ({