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: {
fontSize: 10,
fontWeight: "light",
fontWeight: "normal",
color: "#A3A3A3",
marginLeft: 16,
marginRight: 16,

View File

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

View File

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

View File

@ -1,7 +1,7 @@
import React from "react";
import { StyleSheet, TouchableOpacity, View } from "react-native";
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 }) => {
return (