Skip to content

Commit

Permalink
Merge pull request #11 from savanesoff/li-fixes
Browse files Browse the repository at this point in the history
Li links  fixes
  • Loading branch information
savanesoff authored Jul 14, 2023
2 parents 62c06d7 + c6fe350 commit 6648930
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 17 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# devtools-chopper

## 1.0.1

### Patch Changes

- Fixes Li links

## 1.0.0

### Major Changes
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -203,6 +203,6 @@ const chopper = new Chopper({name: 'Event Monitoring', console: false});

# PS

[![Li](https://badgen.net/badge/Hit%20me%20up%20on/LI?color=blue)](https://github.com/savanesoff/devtools-chopper)
[![Li](https://badgen.net/badge/Hit%20me%20up%20on/LI?color=blue)](https://www.linkedin.com/in/samvel-avanesov)

Enjoy! 🎉🎉🎉
25 changes: 10 additions & 15 deletions demo/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { useCallback, useState } from "react";
import Button from "@mui/material/Button";
import { Box, Card, Divider, Typography } from "@mui/material";
import Chopper from "./../src";
import { COLORS } from "./../src/styles";
import { COLORS } from "./../src/styles";
// @eslint-ignore
declare global {
interface Window {
Expand All @@ -19,7 +19,9 @@ if (!window.chopper) {
}

function App() {
const [randomScroll, setRandomScroll] = useState<ReturnType<typeof setInterval> | null>(null);
const [randomScroll, setRandomScroll] = useState<ReturnType<
typeof setInterval
> | null>(null);
const toggleRandomScroll = useCallback(() => {
if (randomScroll) {
clearInterval(randomScroll);
Expand All @@ -43,7 +45,9 @@ function App() {
}
}, [randomScroll]);

const [randomPin, setRandomPin] = useState<ReturnType<typeof setInterval> | null>(null);
const [randomPin, setRandomPin] = useState<ReturnType<
typeof setInterval
> | null>(null);
const toggleRandomPin = useCallback(() => {
if (randomPin) {
clearInterval(randomPin);
Expand Down Expand Up @@ -108,24 +112,15 @@ function App() {
<img src="https://github.com/savanesoff/devtools-chopper/actions/workflows/publish.yaml/badge.svg?branch=main&event=push" />
</a>

<a
href="https://badge.fury.io/js/devtools-chopper"
target="_blank"
>
<a href="https://badge.fury.io/js/devtools-chopper" target="_blank">
<img src="https://badge.fury.io/js/devtools-chopper.svg" />
</a>

<a
href="https://opensource.org/licenses/MIT"
target="_blank"
>
<a href="https://opensource.org/licenses/MIT" target="_blank">
<img src="https://img.shields.io/badge/license-MIT-blue.svg" />
</a>

<a
href="(https://github.com/savanesoff/devtools-chopper"
target="_blank"
>
<a href="https://www.linkedin.com/in/samvel-avanesov" target="_blank">
<img src="https://badgen.net/badge/savanesoff/LI?color=blue" />
</a>
</Box>
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "devtools-chopper",
"private": false,
"version": "1.0.0",
"version": "1.0.1",
"license": "MIT",
"description": "Chopper is a Javascript log display devtool which allows you to monitor application logs in DOM",
"bugs": {
Expand Down

0 comments on commit 6648930

Please sign in to comment.