all repos — stealth-developers @ 6bb17a8faa466982ae7085638f89778869d56644

src/utils/choices.ts (view raw)

 1
 2
 3
 4
 5
 6
 7
 8
import config from "@/config";

export function getProjectChoices() {
	return Object.entries(config.projects).map(([key, project]) => ({
		name: project.displayName,
		value: key,
	}));
}