diff options
| author | jackyzha0 <[email protected]> | 2020-05-25 22:18:29 -0700 |
|---|---|---|
| committer | jackyzha0 <[email protected]> | 2020-05-25 22:18:29 -0700 |
| commit | e994ed4232f58e38d913856fc693bb31dec05675 (patch) | |
| tree | 886f1b4a77fedf32f2f63c8cbbbe76e3db5b7a84 | |
| parent | update makefile and readme (diff) | |
| download | ctrl-v-e994ed4232f58e38d913856fc693bb31dec05675.tar.xz ctrl-v-e994ed4232f58e38d913856fc693bb31dec05675.zip | |
fix bad fb redirect
| -rw-r--r-- | frontend/src/components/modals/PasteModal.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/frontend/src/components/modals/PasteModal.js b/frontend/src/components/modals/PasteModal.js index 48ea372..eeff91b 100644 --- a/frontend/src/components/modals/PasteModal.js +++ b/frontend/src/components/modals/PasteModal.js @@ -18,7 +18,7 @@ const modalStyles = { const PasteModal = (props) => { const history = useHistory(); - const fullURL = `${window.location.href}${props.hash}`; + const fullURL = `https://ctrl-v.app${props.hash}`; const clipboard = useClipboard({ copiedTimeout: 3000 }); Modal.setAppElement('body'); |