Skip to content

Commit 0f829bb

Browse files
committed
remove extranious null check
1 parent 9eabd03 commit 0f829bb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sdk/nodejs/src/client.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -286,7 +286,7 @@ export class DevCycleClient<
286286
if (type === configVariable.type) {
287287
options.value = configVariable.value as VariableTypeAlias<T>
288288
if (configVariable.eval) {
289-
options.eval = { ...configVariable?.eval }
289+
options.eval = { ...configVariable.eval }
290290
}
291291
} else {
292292
options.eval = {

0 commit comments

Comments
 (0)