Skip to content

Commit 9c27c84

Browse files
committed
chore: fix typo
1 parent 20fbadb commit 9c27c84

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

app/experience/page.module.scss

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
.main {
44
background: #FFF;
55
// min-height: 15rem;
6-
// flex: 1 0 calc(100vh - 2.1rem);
6+
flex: 1 0 calc(100vh - 2.1rem);
77
}
88

99
.caption {

app/experience/page.tsx

+1-3
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,7 @@ const Experience = () => {
2020
return (
2121
<main className={styles.main}>
2222
{tabData.length > 0 && (
23-
<h1 className={styles.caption}>
24-
TAP ON THE COMPANY TO SEE MORE INTRO
25-
</h1>
23+
<h1 className={styles.caption}>TAP ON THE COMPANY TO SEE MORE INTRO</h1>
2624
)}
2725
<div className={styles.container}>
2826
{/* <Loading /> */}

utils/utils.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
*/
66

77
/**
8-
* Sleep for a specified time, in milisecond
8+
* Sleep for a specified time, in miliseconds
99
*
1010
* @ms {number} | sleep time
1111
* @return {Promise} | delayed promise

0 commit comments

Comments
 (0)