Skip to content

Commit

Permalink
remove rpc hardcode
Browse files Browse the repository at this point in the history
  • Loading branch information
truemiller committed Feb 29, 2024
1 parent 259da57 commit feb266e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/pages/spawn/[serviceTemplateHash].tsx
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ export const SpawnPage = ({ serviceTemplateHash }: SpawnPageProps) => {
const { getServiceTemplate } = useMarketplace();

const [service, setService] = useState<Service>();
const [rpc, setRpc] = useState('http://localhost:8545'); // hardcoded default for now
const [rpc, setRpc] = useState('');
const [isStaking, setIsStaking] = useState(false);

const serviceTemplate: ServiceTemplate | undefined = useMemo(
Expand Down

0 comments on commit feb266e

Please sign in to comment.