diff options
author | Michal Sapka <michal@sapka.me> | 2022-09-04 22:19:33 +0200 |
---|---|---|
committer | Michal Sapka <michal@sapka.me> | 2022-09-04 22:21:51 +0200 |
commit | 6977eb0132a61e3f890ae68ace41b2acff6533e3 (patch) | |
tree | 6bd1fc8e1b9fcd02e45c01760a0b0547f74e39b8 /pages | |
parent | 2a993a9f2f6000097a6aee12f7ed994713e4cbab (diff) |
style: fix lint problems
Diffstat (limited to 'pages')
-rw-r--r-- | pages/index.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pages/index.tsx b/pages/index.tsx index d7677670..1212d08b 100644 --- a/pages/index.tsx +++ b/pages/index.tsx @@ -49,7 +49,7 @@ const Home: NextPage = () => { <Box as="section"> <Heading variant="section-title" as="h3">About me</Heading> <Text> - I am a self-thought software engineer working at <Link href="https://zendesk.com" isExternal>Zendesk</Link>. Even though I started my professional programming life relatively late in life, I've been passionate about computers since I was ten. I love the process of creating software. Even though I consider caring about the product a requisite, the technical side strongly drives me. I take pride in what and how I do things. I have most extensive experience working with Ruby on Rails and relative databases. Still, I am expanding my knowledge around service-oriented architecture, no-SQL databases, and other languages - currently, I am trying to get the hang of Golang and MongoDB. I am also trying to get familiar with the modern ReactJS ecosystem. + I am a self-thought software engineer working at <Link href="https://zendesk.com" isExternal>Zendesk</Link>. Even though I started my professional programming life relatively late in life, I've been passionate about computers since I was ten. I love the process of creating software. Even though I consider caring about the product a requisite, the technical side strongly drives me. I take pride in what and how I do things. I have most extensive experience working with Ruby on Rails and relative databases. Still, I am expanding my knowledge around service-oriented architecture, no-SQL databases, and other languages - currently, I am trying to get the hang of Golang and MongoDB. I am also trying to get familiar with the modern ReactJS ecosystem. </Text> </Box> @@ -65,7 +65,7 @@ const Home: NextPage = () => { <Heading variant="section-title" as="h3">Recent publications</Heading> <VStack spacing="1" alignItems="start"> {Publications.map((value, key) => { - return <Box> + return <Box key={key}> <Link href={value.url} isExternal>{value.name}</Link> </Box> |