Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion apps/dashboard/src/components/email-preview.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -791,7 +791,7 @@ export default function EmailPreview({
</div>
</div>
}>
<EmailPreviewErrorBoundary key={`${debouncedTemplateTsxSource ?? ""}${debouncedThemeTsxSource ?? ""}${editMode}`}>
<EmailPreviewErrorBoundary key={[themeId, templateId, debouncedThemeTsxSource, debouncedTemplateTsxSource, editableSource, editMode].map((value) => JSON.stringify(value ?? null)).join("\u0000")}>
Comment thread
Developing-Gamer marked this conversation as resolved.
{editMode ? (
<EmailPreviewEditableContent
themeId={themeId}
Expand Down
Loading