Skip to content
This repository was archived by the owner on Sep 20, 2024. It is now read-only.

Commit 46abf58

Browse files
committed
chore: remove logs
1 parent d7ce521 commit 46abf58

File tree

3 files changed

+62
-1
lines changed

3 files changed

+62
-1
lines changed
Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
// Jest Snapshot v1, https://goo.gl/fbAQLP
2+
3+
exports[`should render properly 1`] = `
4+
<DocumentFragment>
5+
<button
6+
aria-label="Close"
7+
class="chakra-icon-button css-fdaoze"
8+
type="button"
9+
>
10+
<svg
11+
aria-hidden=""
12+
class="chakra-icon css-13otjrl"
13+
focusable="false"
14+
viewBox="0 0 24 24"
15+
>
16+
17+
18+
<g
19+
stroke="currentColor"
20+
strokewidth="1.5"
21+
>
22+
23+
24+
<path
25+
d="M9,9a3,3,0,1,1,4,2.829,1.5,1.5,0,0,0-1,1.415V14.25"
26+
fill="none"
27+
strokelinecap="round"
28+
/>
29+
30+
31+
<path
32+
d="M12,17.25a.375.375,0,1,0,.375.375A.375.375,0,0,0,12,17.25h0"
33+
fill="currentColor"
34+
strokelinecap="round"
35+
/>
36+
37+
38+
<circle
39+
cx="12"
40+
cy="12"
41+
fill="none"
42+
r="11.25"
43+
strokemiterlimit="10"
44+
/>
45+
46+
47+
</g>
48+
49+
50+
</svg>
51+
</button>
52+
</DocumentFragment>
53+
`;
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
// Jest Snapshot v1, https://goo.gl/fbAQLP
2+
3+
exports[`should render properly 1`] = `
4+
<DocumentFragment>
5+
<div
6+
class="css-0"
7+
/>
8+
</DocumentFragment>
9+
`;

packages/utils/src/vue-utils.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@ export function createContext<ContextType>(options: CreateContextOptions = {}) {
3434

3535
function Provider(payload: ContextType) {
3636
provide<ContextType>(contextSymbol, payload)
37-
console.log('providing', contextSymbol, payload)
3837
}
3938

4039
function useContext() {

0 commit comments

Comments
 (0)