Faas semi worfking

This commit is contained in:
2025-08-30 23:52:37 -04:00
parent 2778cbc512
commit 67bce24899
23 changed files with 1089 additions and 135 deletions

View File

@ -8,7 +8,7 @@ import { ExecutionModal } from './components/ExecutionModal';
import { FunctionDefinition } from './types';
// Default Mantine theme
const theme = {
const theme: any = {
colorScheme: 'light',
};
@ -20,6 +20,7 @@ const App: React.FC = () => {
const [refreshKey, setRefreshKey] = useState(0);
const handleCreateFunction = () => {
console.log('handleCreateFunction called');
setEditingFunction(null);
setFunctionFormOpened(true);
};
@ -94,4 +95,4 @@ const App: React.FC = () => {
);
};
export default App;
export default App;