add pigs to event categories, fallback to those
This commit is contained in:
@@ -27,6 +27,12 @@ export const PIG_NAMES = [
|
||||
"peek",
|
||||
];
|
||||
|
||||
export function randomElement(array: any[]): any | undefined {
|
||||
return array.length
|
||||
? array[Math.floor(Math.random() * array.length)]
|
||||
: undefined;
|
||||
}
|
||||
|
||||
const BlockFragmentDefinition = graphql(`
|
||||
fragment Blocks on StreamFieldInterface {
|
||||
id
|
||||
|
||||
Reference in New Issue
Block a user