Cleanup old configs

This commit is contained in:
2025-06-11 00:44:15 +02:00
parent ee46d0bff1
commit 890622453e
6 changed files with 11 additions and 773 deletions
-2
View File
@@ -9,11 +9,9 @@ interface IAppProps {
const App: FC<IAppProps> = ({ commBus }) => {
const [SBUsername, setSBUsername] = useState<string>();
//FIXME: TS Type
const [WASMData, setWASMData] = useState<WASMDataPax>();
const [isReady, setIsReady] = useState(false);
// Main Loop for Live Payload
// CommBus
const usernameCallback = useCallback((username: string) => {
setSBUsername(username);