Skip to content

Commit 65b1238

Browse files
committed
Fixed Link being to long
1 parent 4854495 commit 65b1238

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

src/pages/general/contact/Contact.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ import { RiSnapchatLine } from 'react-icons/ri'
66
import IconButton from '../button/IconButton'
77
import Styles from './ContactStyles'
88

9+
const LinkedInSource = 'https://www.linkedin.com/company/temple-robotics/posts/?feedView=all'
10+
911
export default class Contact extends React.Component<Record<string, never>, never> {
1012
render (): React.ReactElement {
1113
return (
@@ -18,7 +20,7 @@ export default class Contact extends React.Component<Record<string, never>, neve
1820
<IconButton icon={<RiSnapchatLine/>} source={'https://snapchat.com/add/templerobotics'} />
1921
<IconButton icon={<FiYoutube/>} source={'https://www.youtube.com/channel/UCv59XUAVDLtgk0KA9r4RTsA'} />
2022
<IconButton icon={<FiMail/>} source={'Mailto:Temple.Robotics@outlook.com'} />
21-
<IconButton icon={<FiLinkedin/>} source={'https://www.linkedin.com/company/temple-robotics/posts/?feedView=all'}/>
23+
<IconButton icon={<FiLinkedin/>} source={ LinkedInSource}/>
2224
</div>
2325
</Styles.ContactContainer>
2426
)

src/pages/sponsors/Sponsors.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ import Contact from '../general/contact/Contact'
1515
// Custom styles
1616
import Styles, { SponsorImages } from './SponsorsStyles'
1717

18+
1819
const Sponsors = (): React.ReactElement => {
1920
return (
2021
<Styles.SponsorContainer>

0 commit comments

Comments
 (0)