Skip to content

Commit 92be30a

Browse files
committed
chore: lint
1 parent e76674a commit 92be30a

1 file changed

Lines changed: 6 additions & 7 deletions

File tree

core/alert.tsx

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
11
import { Alert, Platform } from "react-native";
22

3-
export function showAlert(message: string,title?: string) {
3+
export function showAlert(message: string, title?: string) {
44
switch (Platform.OS) {
5-
case 'ios':
6-
case 'android':
7-
Alert.alert(title ?? "Termy", message)
5+
case "ios":
6+
case "android":
7+
Alert.alert(title ?? "Termy", message);
88
break;
9-
case 'web':
9+
case "web":
1010
alert(message);
1111
}
12-
13-
}
12+
}

0 commit comments

Comments
 (0)