🐛(frontend) auto-select new custom background when not logged in

When not logged in and selecting a new custom personal background
the constant id was causing the new custom background not to be auto
selected.
This commit is contained in:
Florent Chehab
2026-03-19 10:36:53 +01:00
parent 4ca230eb12
commit cf3fb208e2
2 changed files with 4 additions and 1 deletions
+1
View File
@@ -17,6 +17,7 @@ and this project adheres to
### Fixed
- 🐛(frontend) disable personal custom background while deleting
- 🐛(frontend) auto-select new custom background when not logged in
## [1.11.0] - 2026-03-19
@@ -319,7 +319,9 @@ export const EffectsConfiguration = ({
}
const imagePath = URL.createObjectURL(file)
const fileId = `local-image`
// We concatenate with the image path so that the constructed file-id
// is unique for local files.
const fileId = `local-image-${imagePath}`
await toggleEffect({
type: ProcessorType.VIRTUAL,
imagePath,