Remove instance variables to fix haml-lint

This commit is contained in:
Rishabh Singh 2019-08-17 18:15:01 +05:30
parent 5bb297ab84
commit 9bdcba4609
4 changed files with 4 additions and 4 deletions

View file

@ -2,4 +2,4 @@
Editing
= @booth.title
= render 'booths/form'
= render 'booths/form', conference: @conference

View file

@ -1,3 +1,3 @@
%h1 New #{t'booth'}
= render 'booths/form'
= render 'booths/form', conference: @conference

View file

@ -3,4 +3,4 @@
Editing
= @booth.title
= render 'form'
= render 'form', conference: @conference

View file

@ -1,4 +1,4 @@
.container
%h1 Request a #{t'booth'}
= render 'form'
= render 'form', conference: @conference