calling the storage method from the service and storage running remotely is failing..It worked locally and storage docs where created as expected.
[ClientCallable]
public async Promise StorageTest()
{
var doc = new PotatoStorageDoc
{
PotatoName = "Potato",
PotatoCount = 10
};
var collection = await Storage.PotatoStorageCollection<PotatoStorageDoc>();
await collection.InsertOneAsync(doc);
}