Skip to content

Commit

Permalink
feat: 문의하기 링크 연결
Browse files Browse the repository at this point in the history
  • Loading branch information
yeoniii20 committed Aug 31, 2024
1 parent 088e122 commit ea8793d
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion screen/MyPage/myPage.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import {
TouchableOpacity,
Alert,
ScrollView,
Linking,
} from "react-native";
import Line from "../../components/Line";
import * as Notifications from "expo-notifications";
Expand Down Expand Up @@ -244,7 +245,11 @@ const MyPage = () => {
};

const handleInquireClick = () => {
console.log("문희하기 클릭~");
const url = "https://forms.gle/A6TTd13X2cEcwGpq8";

Linking.openURL(url).catch((err) =>
console.error("Failed to open URL:", err)
);
};

const handleLogoutClick = () => {
Expand Down

0 comments on commit ea8793d

Please sign in to comment.