Skip to content

Commit

Permalink
Fix: comment unused codes #24
Browse files Browse the repository at this point in the history
  • Loading branch information
luckylooky2 committed May 25, 2024
1 parent 55aa241 commit 1bc586d
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -111,8 +111,10 @@ export const optionPickerFactory = <Model extends VariableWithOptions | Variable
};

render() {
const { variable, picker } = this.props;
const showOptions = picker.id === variable.id; // true: dropdown 열림(picker), false: dropdown 닫힘(variable)
const { variable } = this.props;

// const { variable, picker } = this.props;
// const showOptions = picker.id === variable.id; // true: dropdown 열림(picker), false: dropdown 닫힘(variable)

return (
<div className="variable-link-wrapper">
Expand Down

0 comments on commit 1bc586d

Please sign in to comment.