Skip to content

Commit 6ea4ed1

Browse files
committed
Fixed inline links
1 parent 6cad88b commit 6ea4ed1

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/data/RoboticsPhotoGalleryInfo.tsx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
import { RMC_PHOTO_GALLERY } from '../tools/Constants'
22
import { GalleryImage } from '../pages/general/photo-gallery/PhotoGalleryStyles'
3-
const Comp2024Description = 'The team before our first competition run at the University of Central Florida.'
3+
44
// eslint-disable-next-line id-length
55
const ROBOTICS_PHOTO_GALLERY_INFO: GalleryImage[] = [
6-
{ image: RMC_PHOTO_GALLERY[0], title: '2024', description: Comp2024Description},
6+
{ image: RMC_PHOTO_GALLERY[0], title: '2024', description: `The team before our first competition run at the University of
7+
Central Florida.`},
78
{ image: RMC_PHOTO_GALLERY[1], title: '2023', description: 'The team after our first competition run at the University of Alabama.' },
89
{ image: RMC_PHOTO_GALLERY[2], title: '2023', description: `The leads in front of the project after finishing
910
the outside construction.` },

src/pages/general/contact/Contact.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ 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'
109

1110
export default class Contact extends React.Component<Record<string, never>, never> {
1211
render (): React.ReactElement {
@@ -20,7 +19,7 @@ export default class Contact extends React.Component<Record<string, never>, neve
2019
<IconButton icon={<RiSnapchatLine/>} source={'https://snapchat.com/add/templerobotics'} />
2120
<IconButton icon={<FiYoutube/>} source={'https://www.youtube.com/channel/UCv59XUAVDLtgk0KA9r4RTsA'} />
2221
<IconButton icon={<FiMail/>} source={'Mailto:Temple.Robotics@outlook.com'} />
23-
<IconButton icon={<FiLinkedin/>} source={ LinkedInSource}/>
22+
<IconButton icon={<FiLinkedin/>} source={ 'https://www.linkedin.com/company/temple-robotics/posts/?feedView=all'}/>
2423
</div>
2524
</Styles.ContactContainer>
2625
)

0 commit comments

Comments
 (0)