fixed things for linter

This commit is contained in:
Dean 2024-02-20 14:38:13 -08:00
parent 24c14fb7ca
commit 5b86a0f6d9
4 changed files with 4 additions and 4 deletions

View File

@ -20,7 +20,7 @@ const styles = StyleSheet.create({
}, },
sessionDatetime: { sessionDatetime: {
fontSize: 10, fontSize: 10,
fontWeight: "light", fontWeight: "normal",
color: "#A3A3A3", color: "#A3A3A3",
marginLeft: 16, marginLeft: 16,
marginRight: 16, marginRight: 16,

View File

@ -50,7 +50,7 @@ const styles = StyleSheet.create({
flexDirection: "row", flexDirection: "row",
justifyContent: "space-around", justifyContent: "space-around",
margin: 16, margin: 16,
alignItems: "center", textAlign: "center",
}, },
verticalSpacer: { verticalSpacer: {
width: 0.5, width: 0.5,

View File

@ -20,7 +20,7 @@ const SessionCard = ({
}) => { }) => {
console.log(imageURL); console.log(imageURL);
return ( return (
<View style={styles.background}> <View>
<View style={styles.card}> <View style={styles.card}>
<SessionCardHeader <SessionCardHeader
playerName={playerName} playerName={playerName}

View File

@ -1,7 +1,7 @@
import React from "react"; import React from "react";
import { StyleSheet, TouchableOpacity, View } from "react-native"; import { StyleSheet, TouchableOpacity, View } from "react-native";
import sampleSessionImage from "../../assets/sample_session.png"; import sampleSessionImage from "../../assets/sample_session.png";
import SessionCard from "../../component/session-card/session-card.tsx"; import SessionCard from "../../component/session-card/session-card";
const SessionFeed: React.FC = ({ navigation }) => { const SessionFeed: React.FC = ({ navigation }) => {
return ( return (