Skip to content

Commit

Permalink
fixed some issues
Browse files Browse the repository at this point in the history
  • Loading branch information
akp111 authored Jul 24, 2024
1 parent c0ce39c commit 44178d1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions components/terminal/terminalHelper.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ export const ListResponse = (inputData) => {
}

export const LineByLineResponse = (inputData) => {
return inputData.map((item, i) => { return (<div>
<a href={item.cta} target="_blank"> <b>Title: {item.name}</b></a>
return inputData.map((item, i) => { return (<div key={i}>
<a href={item.cta} target="_blank" rel="noreferrer"> <b>Title: {item.name}</b></a>
<p>{item.description}</p>
<p>-----------------------------------------------</p>
</div>) })
Expand All @@ -48,7 +48,7 @@ export const AboutResponse = (setCommandResponse) => {
<div>
{LineByLineResponse(GLOBAL_CONSTANTS.PROJECTS)}
</div>
<div><a href={GLOBAL_CONSTANTS.RESUME_LINK} target="_blank">Link to my resume</a></div>
<div><a href={GLOBAL_CONSTANTS.RESUME_LINK} target="_blank" rel="noreferrer">Link to my resume</a></div>
</SimpleGrid>);

setCommandResponse(response);
Expand Down
2 changes: 1 addition & 1 deletion components/welcome/welcome.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export default function Welcome() {
{WELCOME_CONSTANTS.WELCOME_MESSAGE}
</Flex>
<Flex>
Type "about" to get details about me or "help" to list the commands and have fun! (Note: WIP)
Type &#34;about&#34; to get details about me or &#34;help&#34; to list the commands and have fun! (Note: WIP)
</Flex>
</Container>

Expand Down

0 comments on commit 44178d1

Please sign in to comment.