Skip to content

Commit ee2309f

Browse files
committed
fix(frontend): remove console.log
1 parent 0e82227 commit ee2309f

File tree

2 files changed

+16
-1
lines changed

2 files changed

+16
-1
lines changed

packages/frontend/app/routes/peers.$peerId.tsx

-1
Original file line numberDiff line numberDiff line change
@@ -441,7 +441,6 @@ export async function action({ request }: ActionFunctionArgs) {
441441
result.error.flatten().fieldErrors
442442
return json({ ...actionResponse }, { status: 400 })
443443
}
444-
console.log(result.data.incomingAuthTokens)
445444
const response = await updatePeer({
446445
id: result.data.id,
447446
http: {

run.sh

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
#!/bin/bash
2+
set -e
3+
4+
echo --- Generating GraphQL types ---
5+
pnpm --filter backend generate
6+
echo --- Stopping Docker compose ---
7+
pnpm localenv:compose down
8+
9+
echo --- Building rafiki-backend ---
10+
sudo docker image rm rafiki-backend
11+
sudo docker build -f ./packages/backend/Dockerfile.dev -t rafiki-backend .
12+
13+
cd localenv
14+
15+
echo --- Starting Docker compose ---
16+
pnpm localenv:compose up -d

0 commit comments

Comments
 (0)