Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Le formatting
  • Loading branch information
regalijan committed Oct 19, 2023
1 parent a062e9b commit b4e2cfa
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 8 deletions.
9 changes: 8 additions & 1 deletion app/routes/about.tsx
@@ -1,4 +1,11 @@
import { Container, Heading, Link, ListItem, Text, UnorderedList } from "@chakra-ui/react";
import {
Container,
Heading,
Link,
ListItem,
Text,
UnorderedList,
} from "@chakra-ui/react";

export default function () {
return (
Expand Down
10 changes: 5 additions & 5 deletions app/routes/hammer.tsx
Expand Up @@ -10,7 +10,7 @@ import {
Input,
Stack,
StackDivider,
Text
Text,
} from "@chakra-ui/react";
import { type FormEvent, useState } from "react";

Expand All @@ -19,20 +19,20 @@ export async function loader({ context }: { context: RequestContext }) {

if (!currentUser)
throw new Response(null, {
status: 401
status: 401,
});

if (!(currentUser & 1 << 5))
if (!(currentUser & (1 << 5)))
throw new Response(null, {
status: 403
status: 403,
});
}

export function meta() {
return [{ title: "Hammer - Car Crushers" }];
}

export default function() {
export default function () {
const [username, setUsername] = useState("");
const [uid, setUid] = useState("");
const [status, setStatus] = useState("");
Expand Down
4 changes: 2 additions & 2 deletions app/routes/terms.tsx
Expand Up @@ -108,8 +108,8 @@ export default function () {
<Heading size="lg">Indemnification</Heading>
<br />
<Text>
You agree to defend, indemnify and hold harmless Wells Studios AB and its
licensee and licensors, and their employees, contractors, agents,
You agree to defend, indemnify and hold harmless Wells Studios AB and
its licensee and licensors, and their employees, contractors, agents,
officers and directors, from and against any and all claims, damages,
obligations, losses, liabilities, costs or debt, and expenses (including
but not limited to attorney's fees), resulting from or arising out of a)
Expand Down

0 comments on commit b4e2cfa

Please sign in to comment.