Skip to content

Commit

Permalink
refactor: removed redundant debugging code
Browse files Browse the repository at this point in the history
  • Loading branch information
prathamVaidya committed May 1, 2024
1 parent 85fe623 commit 56f3eac
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ const NotifyInstructorsButton = (props) => {

<div className="form-group">
<TextAreaInput
id={'notification-message'}
id="notification-message"
value={notification.message}
onChange={(_, value) => {
dispatch({ type: ALERT_INSTRUCTOR_UPDATE_MESSAGE, payload: value });
Expand Down
1 change: 0 additions & 1 deletion app/mailers/instructor_notification_mailer.rb
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ def email(alert, bcc_to_salesforce = true)
@alert.sender_email,
bcc_to_salesforce ? @alert.bcc_to_salesforce_email : nil
].compact }
p params
return if params[:to].empty?
params[:reply_to] = @alert.sender_email unless @alert.sender_email.nil?
mail(params)
Expand Down

0 comments on commit 56f3eac

Please sign in to comment.