Skip to content

Commit 61415c0

Browse files
committed
wip
1 parent 9b6f16d commit 61415c0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Memoizer/Memoizer.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ public function memoize(Node $node): Node
6262
$name = $node->name;
6363
$attributes = $node->getAttributesAsRuntimeArrayString();
6464

65-
$output = '<' . '?php $blaze_memoized_key = \Livewire\Blaze\Memoizer\Memo::key("' . $name . '", ' . $attributes . '); ?>\n';
65+
$output = '<' . '?php $blaze_memoized_key = \Livewire\Blaze\Memoizer\Memo::key("' . $name . '", ' . $attributes . '); ?>';
6666
$output .= '<' . '?php if (! \Livewire\Blaze\Memoizer\Memo::has($blaze_memoized_key)) : ?>';
6767
$output .= '<' . '?php ob_start(); ?>';
6868
$output .= $node->render();

0 commit comments

Comments
 (0)