🐛(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:
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user