Skip to content

Commit

Permalink
refactor: Code cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
ShrimpCryptid committed Dec 3, 2024
1 parent 4392a17 commit ac5f119
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/colorizer/utils/url_utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -451,7 +451,7 @@ function deserializeVectorConfig(params: URLSearchParams): Partial<VectorConfig>
const newConfig: Partial<VectorConfig> = {};
newConfig.visible = decodeBoolean(params.get(UrlParam.SHOW_VECTOR));
newConfig.color = decodeHexColor(params.get(UrlParam.VECTOR_COLOR));
newConfig.key = decodeString(params.get(UrlParam.VECTOR_KEY)) ?? undefined;
newConfig.key = decodeString(params.get(UrlParam.VECTOR_KEY));
newConfig.scaleFactor = decodeFloat(params.get(UrlParam.VECTOR_SCALE));
newConfig.timeIntervals = decodeInt(params.get(UrlParam.VECTOR_TIME_INTERVALS));

Expand Down

0 comments on commit ac5f119

Please sign in to comment.