diff options
| author | Pinapelz <yukais@pinapelz.com> | 2024-09-30 16:35:11 -0700 |
|---|---|---|
| committer | Pinapelz <yukais@pinapelz.com> | 2024-09-30 16:35:11 -0700 |
| commit | 9848e0ec1937c06a7bece4bd10de7e52f0976338 (patch) | |
| tree | 29d8cdde0740cc10aa124363bde59af7543d6e43 /src/components/SubscriberTable/SubscriberTable.tsx | |
| parent | 0a6e825569eeeaf4ccb65ce8626405f6f2eca384 (diff) | |
make it more obvious that subscriber rows are clickable
Diffstat (limited to 'src/components/SubscriberTable/SubscriberTable.tsx')
| -rw-r--r-- | src/components/SubscriberTable/SubscriberTable.tsx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/components/SubscriberTable/SubscriberTable.tsx b/src/components/SubscriberTable/SubscriberTable.tsx index 05080ca..eecf935 100644 --- a/src/components/SubscriberTable/SubscriberTable.tsx +++ b/src/components/SubscriberTable/SubscriberTable.tsx @@ -25,7 +25,8 @@ const DataTable = ({ channel_data, timestamp }: SubscriberDataTableProp) => { <> <div className="text-center sm:mt-5"> <h1 className="text-2xl font-bold text-gray-800">Subscriber Count</h1> - <p className="text-gray-500 text-sm">Last Updated: {timestamp}</p> + <h2 className="text-xl text-gray-800">Click on a row to view more details!</h2> + <p className="text-gray-500 text-sm">Updated Hourly. Data Below Retrieved: {timestamp}</p> </div> <div className="px-2 sm:px-48 py-4 sm:py-8 relative rounded-l text-left overflow-auto"> <table className="w-full text-m sm:text-xl text-black bg-white"> |
