mirror of
https://github.com/stefanpejcic/openpanel
synced 2025-06-26 18:28:26 +00:00
6 lines
171 B
TypeScript
6 lines
171 B
TypeScript
import type { Activity } from "src/interfaces/activity";
|
|
|
|
export const getOwners = (activity: Activity) => {
|
|
return activity.trace?.filter((t) => !t.isRefine) ?? [];
|
|
};
|