Skip to content

Commit

Permalink
fix: add default parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
mulengawilfred committed Nov 28, 2024
1 parent a8c377f commit 81d4497
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/engines/Cesium/common.ts
Original file line number Diff line number Diff line change
Expand Up @@ -546,7 +546,7 @@ export const colorBlendMode = (colorBlendMode?: "highlight" | "replace" | "mix"
)[colorBlendMode || ""];

export const colorBlendModeFor3DTile = (
colorBlendMode?: "highlight" | "replace" | "mix" | "default",
colorBlendMode: "highlight" | "replace" | "mix" | "default" = "default",
) =>
(
({
Expand Down

0 comments on commit 81d4497

Please sign in to comment.