Skip to content

Commit

Permalink
fix: double quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
LMArts committed Oct 31, 2023
1 parent 05e754e commit 3a38455
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions website/components/menubar.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ const MenuBar = props => {
const documentationMenu = useRef(null);
const [closeMenu, setCloseMenu] = useState(true);

Check failure on line 25 in website/components/menubar.js

View workflow job for this annotation

GitHub Actions / lint

Delete `··`
const megadraftUrl = 'https://draftjs.slack.com/messages/megadraft/';
const githubUrl = 'https://github.com/globocom/megadraft';
const targetBlank = '_blank';
const megadraftUrl = "https://draftjs.slack.com/messages/megadraft/";
const githubUrl = "https://github.com/globocom/megadraft";
const targetBlank = "_blank";

const handleTouchTap = event => {
// This prevents ghost click.
Expand Down

0 comments on commit 3a38455

Please sign in to comment.