Skip to content

Commit 6c7b3b8

Browse files
committed
Fixed bug with the wrong contact types
1 parent 927c99d commit 6c7b3b8

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/App.tsx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,9 @@ interface LandingPageData {
4242
address: string;
4343
phone: string;
4444
email: string;
45-
facebook: string;
46-
twitter: string;
47-
youtube: string;
45+
linkedin: string;
46+
github: string;
47+
medium: string;
4848
};
4949
}
5050
function App() {
@@ -64,9 +64,9 @@ function App() {
6464
address: "",
6565
phone: "",
6666
email: "",
67-
facebook: "",
68-
twitter: "",
69-
youtube: "",
67+
linkedin: "",
68+
github: "",
69+
medium: "",
7070
},
7171
});
7272
useEffect(() => {

0 commit comments

Comments
 (0)