Skip to content

Commit

Permalink
Update .prettierrc and SkillCard.jsx
Browse files Browse the repository at this point in the history
  • Loading branch information
eperezme committed Dec 20, 2023
1 parent 4f16a22 commit be09767
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .prettierrc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"tabWidth": 2,
"useTabs": false
"useTabs": true
}
2 changes: 1 addition & 1 deletion src/sources/contact/Form.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ const Form = () => {
// Replace with your own emailjs service ID, template ID, and public key
const serviceId = 'service_5shgyrp';
const templateId = 'template_06nu5j3';
const publicKey = 'DQAugBa3VxR7ks47b';
const publicKey = `${env.emailjs_public_key}`;

emailjs.send(serviceId, templateId, {
from_name: name,
Expand Down
6 changes: 3 additions & 3 deletions src/sources/skills/SkillCard.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ import { FaDocker, FaJava, FaPython, FaRProject } from "react-icons/fa";
import "./card.css";

function SkillCard() {
return (
<div class="flex-container">
return (
<div class="flex-container">
<div class="flex-items mt-5 mb-5">
<AiFillBoxPlot size={32} style={{transform: "rotate(90deg)"}}/>
<DiGoogleAnalytics size={32}/>
Expand All @@ -34,7 +34,7 @@ function SkillCard() {
<p className="f2-mktg color-fg-muted">Experimental Design</p>
</div>
</div>
);
);
}

export default SkillCard;

0 comments on commit be09767

Please sign in to comment.