mirror of
https://github.com/MetaFam/TheGame.git
synced 2026-01-22 20:58:01 -05:00
fixin' lintin' 🥼
This commit is contained in:
committed by
Alec LaLonde
parent
7663da41db
commit
9fb4b4e04c
@@ -184,7 +184,7 @@ export const SetupPersonalityType: (
|
||||
}
|
||||
</FlexContainer>
|
||||
|
||||
<ColorBar mask={colorMask} w="min(100vw, 30rem)"/>
|
||||
<ColorBar mask={colorMask} mt={8} w="min(100vw, 30rem)"/>
|
||||
|
||||
<MetaButton
|
||||
onClick={handleNextPress}
|
||||
|
||||
@@ -44,7 +44,7 @@ export const SetupSkills: React.FC<SetupSkillsProps> = ({
|
||||
});
|
||||
|
||||
if (error) {
|
||||
console.warn(error);
|
||||
console.warn(error); // eslint-disable-line no-console
|
||||
toast({
|
||||
title: 'Error',
|
||||
description: 'Unable to update player skills. The octo is sad 😢',
|
||||
|
||||
@@ -130,7 +130,7 @@ export const Web3ContextProvider: React.FC<Web3ContextProviderOptions> = ({
|
||||
setIsConnected(true);
|
||||
if (resetUrqlClient) resetUrqlClient();
|
||||
} catch (error) {
|
||||
console.log(error); // eslint-disable-line no-console
|
||||
console.log(error); // eslint-disable-line no-console
|
||||
setIsConnecting(false);
|
||||
disconnect();
|
||||
}
|
||||
|
||||
@@ -2,8 +2,6 @@ import { createClient } from 'urql';
|
||||
|
||||
import { CONFIG } from '../config';
|
||||
|
||||
console.info(`Host: ${CONFIG.graphqlURL}`)
|
||||
|
||||
export const client = createClient({
|
||||
url: CONFIG.graphqlURL,
|
||||
suspense: false,
|
||||
|
||||
Reference in New Issue
Block a user