Skip to content

Commit 2a80fd0

Browse files
committed
hotfix(lint): Resolve linting errors for deployment
1 parent 701022c commit 2a80fd0

File tree

2 files changed

+8
-17
lines changed

2 files changed

+8
-17
lines changed

src/components/sections/about-detail.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -87,16 +87,16 @@ export function AboutDetail() {
8787
operations through efficient, reliable, and strategically designed solutions.
8888
</p>
8989
<p>
90-
My recent achievements include leading CRAL's infrastructure migration to AWS, resulting in 60% cost reduction,
91-
and establishing scalable frameworks supporting diverse teams across 3M. I've developed custom Python packages,
90+
My recent achievements include leading CRAL&apos;s infrastructure migration to AWS, resulting in 60% cost reduction,
91+
and establishing scalable frameworks supporting diverse teams across 3M. I&apos;ve developed custom Python packages,
9292
reusable IaC libraries, and modernized CI/CD pipelines, consistently delivering 50%+ improvements in performance
9393
and deployment efficiency.
9494
</p>
9595
<p>
9696
With a strong foundation in Computer Science and Mathematics from Augsburg University and six AWS certifications,
97-
I've evolved from software engineering to become a leader in cloud architecture and data science. I'm passionate
97+
I&apos;ve evolved from software engineering to become a leader in cloud architecture and data science. I&apos;m passionate
9898
about advancing cloud-based technologies and architecting solutions that enable operational agility and innovation.
99-
Outside of tech, I'm an avid freestyle skier and outdoor enthusiast, bringing the same dedication to precision
99+
Outside of tech, I&apos;m an avid freestyle skier and outdoor enthusiast, bringing the same dedication to precision
100100
and continuous improvement from the slopes to my professional work.
101101
</p>
102102
</div>

src/hooks/use-toast.ts

Lines changed: 4 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -15,37 +15,28 @@ type ToasterToast = ToastProps & {
1515
action?: ToastActionElement;
1616
};
1717

18-
const actionTypes = {
19-
ADD_TOAST: "ADD_TOAST",
20-
UPDATE_TOAST: "UPDATE_TOAST",
21-
DISMISS_TOAST: "DISMISS_TOAST",
22-
REMOVE_TOAST: "REMOVE_TOAST",
23-
} as const;
24-
2518
let count = 0;
2619

2720
function genId() {
2821
count = (count + 1) % Number.MAX_SAFE_INTEGER;
2922
return count.toString();
3023
}
3124

32-
type ActionType = typeof actionTypes;
33-
3425
type Action =
3526
| {
36-
type: ActionType["ADD_TOAST"];
27+
type: "ADD_TOAST";
3728
toast: ToasterToast;
3829
}
3930
| {
40-
type: ActionType["UPDATE_TOAST"];
31+
type: "UPDATE_TOAST";
4132
toast: Partial<ToasterToast>;
4233
}
4334
| {
44-
type: ActionType["DISMISS_TOAST"];
35+
type: "DISMISS_TOAST";
4536
toastId?: ToasterToast["id"];
4637
}
4738
| {
48-
type: ActionType["REMOVE_TOAST"];
39+
type: "REMOVE_TOAST";
4940
toastId?: ToasterToast["id"];
5041
};
5142

0 commit comments

Comments
 (0)