Skip to content

Commit

Permalink
Merge pull request #253 from dash0hq/snyk-upgrade-7b4b954e5b49add3334…
Browse files Browse the repository at this point in the history
…cd2bf221465b2

[Snyk] Upgrade prettier from 3.0.3 to 3.1.0
  • Loading branch information
marcelbirkner authored Dec 18, 2023
2 parents fe0fe60 + c705f53 commit 63b2557
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
8 changes: 4 additions & 4 deletions packages/otelbin/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/otelbin/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"postcss": "^8.4.30",
"prettier": "^3.0.3",
"prettier": "3.1.1",
"prettier-plugin-tailwindcss": "^0.5.7",
"tailwindcss": "^3.3.5",
"ts-node": "^10.9.1",
Expand Down
2 changes: 1 addition & 1 deletion packages/otelbin/src/components/legal/LegalContent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export function LegalContent() {
.filter((doc) => Boolean(doc.url))
.map((doc) => (
<li key={doc.label}>
<a href={doc.url!} target="_blank" className="hover:text-default">
<a href={doc.url ?? ""} target="_blank" className="hover:text-default">
{doc.label}
</a>
</li>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,8 @@ const Node = ({
isConnector && (type === "exporter" || type === "receiver")
? "bg-green-500 text-green-950"
: type === "processor"
? "bg-blue-500"
: "bg-violet-500"
? "bg-blue-500"
: "bg-violet-500"
}
text-xs font-medium h-[35%] overflow-hidden whitespace-nowrap overflow-ellipsis w-full flex items-center justify-center`}
>
Expand Down
2 changes: 1 addition & 1 deletion packages/otelbin/src/components/share/ShareContent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export function ShareContent() {
url: `/s/new`,
method: "POST",
body: fullURL,
}
}
: undefined,
fetcher
);
Expand Down
2 changes: 1 addition & 1 deletion packages/otelbin/src/components/use-toast.ts
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ export const reducer = (state: State, action: Action): State => {
? {
...t,
open: false,
}
}
: t
),
};
Expand Down

0 comments on commit 63b2557

Please sign in to comment.