Skip to content

Commit 877434d

Browse files
committed
Fix inconsistent indent of function comment
1 parent f730c41 commit 877434d

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

components/Ackee.js

+9-9
Original file line numberDiff line numberDiff line change
@@ -24,19 +24,19 @@ const Ackee = () => {
2424
},
2525
{
2626
/*
27-
* Enable or disable tracking of personal data.
28-
* We recommend to ask the user for permission before turning this option on.
29-
*/
27+
* Enable or disable tracking of personal data.
28+
* We recommend to ask the user for permission before turning this option on.
29+
*/
3030
detailed: true,
3131
/*
32-
* Enable or disable tracking when on localhost.
33-
*/
32+
* Enable or disable tracking when on localhost.
33+
*/
3434
ignoreLocalhost: false,
3535
/*
36-
* Enable or disable the tracking of your own visits.
37-
* This is enabled by default, but should be turned off when using a wildcard Access-Control-Allow-Origin header.
38-
* Some browsers strictly block third-party cookies. The option won't have an impact when this is the case.
39-
*/
36+
* Enable or disable the tracking of your own visits.
37+
* This is enabled by default, but should be turned off when using a wildcard Access-Control-Allow-Origin header.
38+
* Some browsers strictly block third-party cookies. The option won't have an impact when this is the case.
39+
*/
4040
ignoreOwnVisits: false
4141
}
4242
)

hooks/useAdjustStyle.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ import { useEffect } from 'react';
66
*/
77
const useAdjustStyle = () => {
88
/**
9-
* 避免 callout 含有图片时溢出撑开父容器
10-
*/
9+
* 避免 callout 含有图片时溢出撑开父容器
10+
*/
1111
const adjustCalloutImg = () => {
1212
const callOuts = document.querySelectorAll('.notion-callout-text');
1313
callOuts.forEach((callout) => {

0 commit comments

Comments
 (0)