Skip to content

Commit

Permalink
mobile: TextReview: reorder imports and use absolute imports
Browse files Browse the repository at this point in the history
  • Loading branch information
ericswpark committed Apr 20, 2024
1 parent b7893d6 commit f66846c
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions mobile/Components/TextReview/TextReview.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { BookInfoContext } from "@/Contexts";
import { client } from "@/appwrite";
import { Account } from "appwrite";
import React from "react";
import { useContext, useState } from "react";
import React, { useContext, useState } from "react";
import {
ActivityIndicator,
Alert,
Expand All @@ -23,7 +23,6 @@ import {
BACKEND_API_CUSTOM_PROPERTY_DATA_URL,
BACKEND_API_REVIEW_URL,
} from "../../Constants/URLs";
import { client } from "../../appwrite";

function TextReview({ route, navigation }) {
const { rating, propertyData } = route.params;
Expand Down

0 comments on commit f66846c

Please sign in to comment.