Skip to content

Commit a0abfe7

Browse files
authoredAug 23, 2024··
Merge pull request #313 from prezly/feature/dev-13404-cant-remove-logos-from-newsrooms-in-site-styling-panel
[DEV-13404] Accept null for newsroom logos create/update request
2 parents 7932ed6 + 0e36cc4 commit a0abfe7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

Diff for: ‎src/endpoints/Newsrooms/types.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -68,11 +68,11 @@ export interface UpdateRequest {
6868
/**
6969
* Uploadcare Image JSON
7070
*/
71-
newsroom_logo?: string;
71+
newsroom_logo?: string | null;
7272
/**
7373
* Uploadcare Image JSON
7474
*/
75-
square_logo?: string;
75+
square_logo?: string | null;
7676
/**
7777
* Uploadcare Image JSON
7878
*/

0 commit comments

Comments
 (0)
Please sign in to comment.