website refactor
This commit is contained in:
@@ -10,7 +10,7 @@
|
||||
* Follows clean architecture and TDD principles.
|
||||
*/
|
||||
|
||||
import type { ValueObject } from '@core/shared/domain';
|
||||
import type { ValueObject } from '@core/shared/domain/ValueObject';
|
||||
|
||||
// Variant types for system-default references
|
||||
export type MediaVariant = 'avatar' | 'logo';
|
||||
@@ -236,7 +236,7 @@ export class MediaReference implements ValueObject<MediaReferenceProps> {
|
||||
/**
|
||||
* Equality comparison
|
||||
*/
|
||||
equals(other: IValueObject<MediaReferenceProps>): boolean {
|
||||
equals(other: ValueObject<MediaReferenceProps>): boolean {
|
||||
if (!(other instanceof MediaReference)) {
|
||||
return false;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user