Skip to content

Commit 9db8bff

Browse files
authored
Merge pull request #70 from untilhamza/release/v1.15.1
Release/v1.15.1
2 parents f6668da + afa9312 commit 9db8bff

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
/.pnp
66
.pnp.js
77

8+
89
# testing
910
/coverage
1011

package.json

+1-2
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,7 @@
5555
},
5656
"eslintConfig": {
5757
"extends": [
58-
"react-app",
59-
"react-app/jest"
58+
"react-app"
6059
]
6160
},
6261
"browserslist": {

public/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,6 @@
3636
To begin the development, run `npm start` or `yarn start`.
3737
To create a production bundle, use `npm run build` or `yarn build`.
3838
-->
39-
<script type="text/javascript" src="//dapi.kakao.com/v2/maps/sdk.js?appkey=04e9e6107e23bbb2571a7b33d5faeef1"></script>
39+
4040
</body>
4141
</html>

src/components/MapDirections/MapDirections.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ const MapDirections = () => {
1212
};
1313
return (
1414
<div className="mb-2 row p-3 gap-2">
15-
<Button variant="outline-primary col" className="d-block w-100" onClick={handleViewKakaoMapClick}>
15+
<Button variant="primary col" className="d-block w-100" onClick={handleViewKakaoMapClick}>
1616
Kakao Map Directions
1717
</Button>
18-
<Button variant="outline-primary col" className="d-block w-100" onClick={handleViewGoogleMapClick}>
18+
<Button variant="primary col" className="d-block w-100" onClick={handleViewGoogleMapClick}>
1919
Google Map Directions
2020
</Button>
2121
</div>

src/version.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"version": "1.15.0"
2+
"version": "1.15.1"
33
}

0 commit comments

Comments
 (0)