diff options
| author | jackyzha0 <[email protected]> | 2021-04-11 14:55:54 -0700 |
|---|---|---|
| committer | jackyzha0 <[email protected]> | 2021-04-11 14:55:54 -0700 |
| commit | dc3f74c642be4dab8ce5507a444ba93371527e78 (patch) | |
| tree | 6b8c95e16d1903c5e6006e671e289dcb46085e4e /frontend/src/pages/raw | |
| parent | password resolution, dynamic head (diff) | |
| download | ctrl-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].js | 1 |
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 } } } |