Skip to content

Commit

Permalink
DGIR-48 : Fix linting errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Prashant-bd committed Nov 22, 2023
1 parent 50fc234 commit 24fb02c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Form/NodeEditConfirmForm.php
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ public function buildForm(array $form, FormStateInterface $form_state) {
$form = parent::buildForm($form, $form_state);

// Retrieve data from temporary storage.
$nodeEditData = $this->tempStoreData;;
$nodeEditData = $this->tempStoreData;

if (!$nodeEditData['node_id']) {
$form_state->setRedirect(
Expand All @@ -106,7 +106,7 @@ public function submitForm(array &$form, FormStateInterface $form_state) {

// Perform any necessary logic before redirecting.
// Trigger node save with data from session.
$data = $this->tempStoreData;;
$data = $this->tempStoreData;

if (!empty($data) && is_array($data)) {
// Load the node.
Expand Down

0 comments on commit 24fb02c

Please sign in to comment.