Skip to content

Commit

Permalink
Merge pull request #19 from BjornMelin/dev
Browse files Browse the repository at this point in the history
hotfix(lint): Resolve linting errors for deployment
  • Loading branch information
BjornMelin authored Jan 3, 2025
2 parents 0383fae + 2a80fd0 commit 40074c0
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 17 deletions.
8 changes: 4 additions & 4 deletions src/components/sections/about-detail.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -87,16 +87,16 @@ export function AboutDetail() {
operations through efficient, reliable, and strategically designed solutions.
</p>
<p>
My recent achievements include leading CRAL's infrastructure migration to AWS, resulting in 60% cost reduction,
and establishing scalable frameworks supporting diverse teams across 3M. I've developed custom Python packages,
My recent achievements include leading CRAL&apos;s infrastructure migration to AWS, resulting in 60% cost reduction,
and establishing scalable frameworks supporting diverse teams across 3M. I&apos;ve developed custom Python packages,
reusable IaC libraries, and modernized CI/CD pipelines, consistently delivering 50%+ improvements in performance
and deployment efficiency.
</p>
<p>
With a strong foundation in Computer Science and Mathematics from Augsburg University and six AWS certifications,
I've evolved from software engineering to become a leader in cloud architecture and data science. I'm passionate
I&apos;ve evolved from software engineering to become a leader in cloud architecture and data science. I&apos;m passionate
about advancing cloud-based technologies and architecting solutions that enable operational agility and innovation.
Outside of tech, I'm an avid freestyle skier and outdoor enthusiast, bringing the same dedication to precision
Outside of tech, I&apos;m an avid freestyle skier and outdoor enthusiast, bringing the same dedication to precision
and continuous improvement from the slopes to my professional work.
</p>
</div>
Expand Down
17 changes: 4 additions & 13 deletions src/hooks/use-toast.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,37 +15,28 @@ type ToasterToast = ToastProps & {
action?: ToastActionElement;
};

const actionTypes = {
ADD_TOAST: "ADD_TOAST",
UPDATE_TOAST: "UPDATE_TOAST",
DISMISS_TOAST: "DISMISS_TOAST",
REMOVE_TOAST: "REMOVE_TOAST",
} as const;

let count = 0;

function genId() {
count = (count + 1) % Number.MAX_SAFE_INTEGER;
return count.toString();
}

type ActionType = typeof actionTypes;

type Action =
| {
type: ActionType["ADD_TOAST"];
type: "ADD_TOAST";
toast: ToasterToast;
}
| {
type: ActionType["UPDATE_TOAST"];
type: "UPDATE_TOAST";
toast: Partial<ToasterToast>;
}
| {
type: ActionType["DISMISS_TOAST"];
type: "DISMISS_TOAST";
toastId?: ToasterToast["id"];
}
| {
type: ActionType["REMOVE_TOAST"];
type: "REMOVE_TOAST";
toastId?: ToasterToast["id"];
};

Expand Down

0 comments on commit 40074c0

Please sign in to comment.