aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/pages/raw
diff options
context:
space:
mode:
authorjackyzha0 <[email protected]>2021-04-11 14:55:54 -0700
committerjackyzha0 <[email protected]>2021-04-11 14:55:54 -0700
commitdc3f74c642be4dab8ce5507a444ba93371527e78 (patch)
tree6b8c95e16d1903c5e6006e671e289dcb46085e4e /frontend/src/pages/raw
parentpassword resolution, dynamic head (diff)
downloadctrl-v-dc3f74c642be4dab8ce5507a444ba93371527e78.tar.xz
ctrl-v-dc3f74c642be4dab8ce5507a444ba93371527e78.zip
fix broken multiline
Diffstat (limited to 'frontend/src/pages/raw')
-rw-r--r--frontend/src/pages/raw/[hash].js1
1 files changed, 0 insertions, 1 deletions
diff --git a/frontend/src/pages/raw/[hash].js b/frontend/src/pages/raw/[hash].js
index 3374eea..9edde36 100644
--- a/frontend/src/pages/raw/[hash].js
+++ b/frontend/src/pages/raw/[hash].js
@@ -11,7 +11,6 @@ const RawText = styled.pre`
export async function getServerSideProps(ctx) {
const data = await resolvePaste(ctx.params.hash)
- console.log(data)
return { props: { ...data } }
}