Skip to content

Commit

Permalink
Fix the semicolons problem
Browse files Browse the repository at this point in the history
  • Loading branch information
faynopi authored May 25, 2021
1 parent 62159f6 commit 49ff878
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/web/LFI.js
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ export default (props) => {
<Clipboard component='a' data-clipboard-text={phpRfi}>
<Button
type='primary'
onClick={message.success('Your RFI payload has been copied');}
onClick={message.success('Your RFI payload has been copied')}
style={{ marginBottom: 10, marginTop: 15 }}
>
<CopyOutlined />
Expand All @@ -190,7 +190,7 @@ export default (props) => {
<Clipboard component='a' data-clipboard-text={encodeURI(phpRfi)}>
<Button
type='dashed'
onClick={message.success('Your RFI payload URL encoded has been copied');}
onClick={message.success('Your RFI payload URL encoded has been copied')}
style={{ marginBottom: 10, marginTop: 15, marginLeft: 15 }}
>
<LinkOutlined /> URL encoded
Expand Down

0 comments on commit 49ff878

Please sign in to comment.