mirror of
https://github.com/misskey-dev/misskey.git
synced 2026-03-21 03:30:42 +00:00
fix(misskey-js): wrong hashtag channel param type (#14611)
This commit is contained in:
@@ -671,7 +671,7 @@ export type Channels = {
|
||||
};
|
||||
hashtag: {
|
||||
params: {
|
||||
q?: string;
|
||||
q: string[][];
|
||||
};
|
||||
events: {
|
||||
note: (payload: Note) => void;
|
||||
|
||||
@@ -124,7 +124,7 @@ export type Channels = {
|
||||
};
|
||||
hashtag: {
|
||||
params: {
|
||||
q?: string;
|
||||
q: string[][];
|
||||
};
|
||||
events: {
|
||||
note: (payload: Note) => void;
|
||||
|
||||
Reference in New Issue
Block a user