mirror of
https://github.com/logos-messaging/OpChan.git
synced 2026-01-05 06:13:11 +00:00
feat: make cell icon optional in type definitions
Updates CellMessage and Cell interfaces to support optional icon fields, allowing cells to be created without requiring an icon URL.
This commit is contained in:
parent
41351ebab1
commit
c34fc7118c
@ -28,7 +28,7 @@ export interface CellMessage extends BaseMessage {
|
||||
id: string;
|
||||
name: string;
|
||||
description: string;
|
||||
icon: string;
|
||||
icon?: string;
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
@ -16,7 +16,7 @@ export interface Cell {
|
||||
id: string;
|
||||
name: string;
|
||||
description: string;
|
||||
icon: string;
|
||||
icon?: string;
|
||||
signature?: string; // Message signature
|
||||
browserPubKey?: string; // Public key that signed the message
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user