Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
AnthonyMarin committed Jul 15, 2024
1 parent 832311d commit a40364b
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { media } from '@app/styles/themes/constants';
import { BaseLayout } from '@app/components/common/BaseLayout/BaseLayout';

export const LayoutMaster = styled(BaseLayout)`
height: 100vh;
height: 100vh;
`;

export const LayoutMain = styled(BaseLayout)`
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ export const TrendingCreators: React.FC = () => {
drag="free"
gap=".2rem"
snap="false"
autoSpeed= {isDesktop ? .7 : .8}
autoSpeed={isDesktop ? 0.7 : 0.8}
flickPower="500"
breakpoints={{
8000: {
Expand Down
1 change: 0 additions & 1 deletion src/hooks/useRelaySettings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,6 @@ const useRelaySettings = () => {
localStorage.setItem('relaySettings', JSON.stringify(relaySettings));
}, [relaySettings]);


const fetchSettings = useCallback(async () => {
try {
const response = await fetch(`${config.baseURL}/relay-settings`, {
Expand Down

0 comments on commit a40364b

Please sign in to comment.