Skip to content

Commit c7e45d1

Browse files
committed
[Fix] Update Touch Area (Button)
+ Param Radius Fix
1 parent 4b703bf commit c7e45d1

3 files changed

Lines changed: 5 additions & 4 deletions

File tree

ComfortableMove/ComfortableMove.xcodeproj/project.pbxproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -289,7 +289,7 @@
289289
"$(inherited)",
290290
"@executable_path/Frameworks",
291291
);
292-
MARKETING_VERSION = 1.0;
292+
MARKETING_VERSION = 1.1.1;
293293
PRODUCT_BUNDLE_IDENTIFIER = com.ParkSeongGeun.ComfortableMove;
294294
PRODUCT_NAME = "$(TARGET_NAME)";
295295
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
@@ -330,7 +330,7 @@
330330
"$(inherited)",
331331
"@executable_path/Frameworks",
332332
);
333-
MARKETING_VERSION = 1.0;
333+
MARKETING_VERSION = 1.1.1;
334334
PRODUCT_BUNDLE_IDENTIFIER = com.ParkSeongGeun.ComfortableMove;
335335
PRODUCT_NAME = "$(TARGET_NAME)";
336336
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";

ComfortableMove/ComfortableMove/Core/Presentation/Help/InfoView.swift

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ struct InfoView: View {
5858

5959
Toggle("", isOn: $isSoundEnabled)
6060
.labelsHidden()
61+
.padding(12) // 터치 영역 확보
6162
.onChange(of: isSoundEnabled) { _, _ in
6263
HapticManager.shared.impact(style: .light) // 토글 시 햅틱
6364
}

ComfortableMove/ComfortableMove/Core/Presentation/Home/HomeView.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -408,7 +408,7 @@ struct HomeView: View {
408408

409409
Task {
410410
do {
411-
let stations = try await BusStopService.shared.getNearbyStations(location: location, radius: 500)
411+
let stations = try await BusStopService.shared.getNearbyStations(location: location, radius: 100)
412412

413413
// 가장 가까운 정류소 선택
414414
if let nearest = stations.first {
@@ -468,4 +468,4 @@ struct HomeView: View {
468468

469469
#Preview {
470470
HomeView()
471-
}
471+
}

0 commit comments

Comments
 (0)