diff --git a/app/components/annotation_marks_modal_form_component.rb b/app/components/annotation_marks_modal_form_component.rb index 7f5f541..90f3989 100644 --- a/app/components/annotation_marks_modal_form_component.rb +++ b/app/components/annotation_marks_modal_form_component.rb @@ -1,4 +1,6 @@ class AnnotationMarksModalFormComponent < BaseComponent - - def initialize(current_user:); end -end \ No newline at end of file + attr_reader :opts + def initialize(current_user:, opts: {}) + @opts = opts + end +end