Skip to content

Commit d1b41f0

Browse files
committed
removed console.log and fixed hardcoded container sizes
1 parent 64d9d6f commit d1b41f0

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

.github/dependabot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ updates:
88
- package-ecosystem: "npm" # See documentation for possible values
99
directory: "/" # Location of package manifests
1010
schedule:
11-
interval: "weekly"
11+
interval: "monthly"

src/flex-grid/index.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -176,8 +176,7 @@ export const FlexGrid: React.FC<FlexGridProps> = ({
176176
style={[{ flexGrow: 1 }, style]}
177177
onLayout={(event) => {
178178
const { width, height } = event.nativeEvent.layout;
179-
console.log(width, height);
180-
setContainerSize({ width, height: 2000 });
179+
setContainerSize({ width, height });
181180
}}
182181
>
183182
<ScrollView

0 commit comments

Comments
 (0)