Skip to content

Commit

Permalink
fix: added missed types
Browse files Browse the repository at this point in the history
  • Loading branch information
ilyhalight committed Dec 28, 2024
1 parent 10124a5 commit c03ade8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/storage.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export async function convertData(
option: string,
oldValue: unknown,
newValue: string | number | boolean,
optionValue: string | undefined = undefined,
optionValue: string | number | boolean | undefined = undefined,
) {
const optionVal = optionValue ?? data[option];
if (optionVal !== oldValue) {
Expand Down

0 comments on commit c03ade8

Please sign in to comment.