We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6935df9 commit 289b1aaCopy full SHA for 289b1aa
1 file changed
src/api/index.ts
@@ -160,7 +160,7 @@ let mentorsPromise: Promise<Mentor[]>;
160
161
export async function getMentors() {
162
if (!mentorsPromise) {
163
- mentorsPromise = makeApiCall<Mentor[]>(`${paths.MENTORS}?limit=1300`).then(
+ mentorsPromise = makeApiCall<Mentor[]>(`${paths.MENTORS}?limit=1300&available=true`).then(
164
(response) => {
165
if (response?.success) {
166
const [available, unavailable] = partition(
0 commit comments