Skip to content

Commit

Permalink
chore(console): removed
Browse files Browse the repository at this point in the history
  • Loading branch information
eunchurn committed Aug 25, 2024
1 parent dd78f55 commit 2c46b91
Show file tree
Hide file tree
Showing 7 changed files with 24 additions and 4 deletions.
7 changes: 7 additions & 0 deletions apps/next-app/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# next-app

## 1.0.4

### Patch Changes

- Updated dependencies
- @eunchurn/react-windrose@1.3.3

## 1.0.3

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion apps/next-app/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "next-app",
"version": "1.0.3",
"version": "1.0.4",
"private": true,
"scripts": {
"dev": "next dev",
Expand Down
7 changes: 7 additions & 0 deletions apps/react-app/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Change Log

## 1.2.14

### Patch Changes

- Updated dependencies
- @eunchurn/react-windrose@1.3.3

## 1.2.13

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion apps/react-app/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-app",
"version": "1.2.13",
"version": "1.2.14",
"private": true,
"scripts": {
"build": "tsc -b && vite build",
Expand Down
6 changes: 6 additions & 0 deletions packages/react-windrose/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Change Log

## 1.3.3

### Patch Changes

- chore(console): removed

## 1.3.2

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/react-windrose/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@eunchurn/react-windrose",
"version": "1.3.2",
"version": "1.3.3",
"private": false,
"types": "lib/index.d.ts",
"exports": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export function useResponsive(
) {
const [size, setSize] = React.useState(initSize);
const [observer, setObserver] = React.useState<ResizeObserver | null>(null);
console.log(size)

React.useEffect(() => {
if (typeof window !== "object") return;
const obs = new ResizeObserver((entries) => {
Expand Down

0 comments on commit 2c46b91

Please sign in to comment.