File size: 212 Bytes
f70bb71
 
b75f205
f70bb71
 
b75f205
 
23d5592
1
2
3
4
5
6
7
8
9
"use server"

import { fetchFilteredSpaces } from "@/utils/network";

export const getSpace = async () => {
  const spaces = await fetchFilteredSpaces('gpu', '');
  return spaces.length > 0 ? spaces[0] : null;
}