How can I get other plugin's option in my plugin?

I'm building a plugin to extend organization plugin. I want to get organizationOptions so I can handle other stuff in the plugin. How can I achieve that? I tried
ctx.context.options.plugins?.find((plugin) => plugin.id === "organization")?.options 

but that didn't work even though organization plugin is setup correctly...
Was this page helpful?